-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (51 loc) · 1.83 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
from __future__ import with_statement
from setuptools import setup, find_packages
__version__ = None
with open('README.md') as f:
long_description = f.read()
setup(name='greensms',
version='2.0.1',
description='GREENSMS API: SMS, Call, Voice, VK, WhatsApp, Viber, HLR, Pay',
url='https://github.com/greensms-ru/greensms-python',
author='GreenSMS',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['tests', 'tests*']),
install_requires=[
'requests',
'six',
'twine',
'cerberus',
'pyhumps'
],
extras_require={
':python_version<"3.0"': [
"requests[security] >= 2.0.0",
"pyhumps == 3.0.2",
],
':python_version>="3.0"': [
"requests >= 2.0.0",
"pyhumps >= 3.5.0"
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
],
include_package_data=True,
keywords=['greensms', 'sms', 'sms-api', 'call-for-code',
'rest', 'api', 'viber', 'whatsapp'],
long_description=long_description,
long_description_content_type='text/markdown'
)