forked from brodul/najdi-si-sms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (57 loc) · 1.68 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from setuptools import setup
version = '1.0.1'
tests_require = [
'responses',
]
testing_extras = tests_require + [
'nose',
'coverage',
'betamax',
'betamax_serializers',
]
docs_extras = [
'sphinx',
'sphinx-autobuild',
]
setup(name='najdisi-sms',
version=version,
description="Najdi.si sms command line tool and API",
long_description="""""",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Communications :: Telephony',
'Topic :: System :: Logging',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='development notification sms gateway najdi telekom slovenia',
author='Domen Kozar, Andraz Brodnik',
author_email='brodul@brodul.org',
url='https://github.com/brodul/najdi-si-sms',
license='BSD',
packages=['najdisi_sms'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'requests==2.9.1',
'beautifulsoup4==4.4.0',
'six==1.10.0',
],
extras_require={
'tests': testing_extras,
'docs': docs_extras,
},
tests_require=tests_require,
test_suite='nose.collector',
entry_points="""
[console_scripts]
najdisi-sms = najdisi_sms.cli:main
""",
)