forked from OrkoHunter/ping-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
if sys.argv[-1] == 'setup.py':
print('To install, run \'python setup.py install\'')
print()
sys.path.insert(0, 'ping_me')
import release
if __name__ == "__main__":
setup(
name = release.name,
version = release.__version__,
author = release.__author__,
author_email = release.__email__,
description = release.__description__,
url='https://github.com/OrkoHunter/ping-me',
keywords='ping me reminder cross platform',
packages = ['ping_me',
'ping_me.data',
'ping_me.utils'],
license = 'Apache License',
entry_points = {
'console_scripts': [
'ping-me = ping_me.ping:main',
'get-ping = ping_me.GET:main'
]
},
install_requires = ['phonenumbers', 'requests', 'pycrypto',
'python-dateutil'],
test_suite = 'nose.collector',
tests_require = ['nose>=0.10.1']
)