|
4 | 4 |
|
5 | 5 | from setuptools import setup, find_packages |
6 | 6 |
|
7 | | -EXCLUDE_FROM_PACKAGES = ['tests'] |
| 7 | +EXCLUDE_FROM_PACKAGES = ["tests"] |
8 | 8 |
|
9 | 9 | here = path.abspath(path.dirname(__file__)) |
10 | 10 |
|
11 | | -version = "3.0.1" |
| 11 | +version = "4.0.0" |
12 | 12 |
|
13 | | -with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
| 13 | +with open(path.join(here, "README.rst"), encoding="utf-8") as f: |
14 | 14 | long_description = f.read() |
15 | 15 |
|
16 | | -setup(name='telesign', |
17 | | - version=version, |
18 | | - description="TeleSign SDK", |
19 | | - license="MIT", |
20 | | - classifiers=[ |
21 | | - "Development Status :: 5 - Production/Stable", |
22 | | - "Intended Audience :: Developers", |
23 | | - "License :: OSI Approved :: MIT License", |
24 | | - "Natural Language :: English", |
25 | | - "Programming Language :: Python", |
26 | | - "Programming Language :: Python :: 2", |
27 | | - "Programming Language :: Python :: 2.6", |
28 | | - "Programming Language :: Python :: 2.7", |
29 | | - "Programming Language :: Python :: 3", |
30 | | - "Programming Language :: Python :: 3.3", |
31 | | - "Programming Language :: Python :: 3.4", |
32 | | - "Programming Language :: Python :: 3.5", |
33 | | - "Programming Language :: Python :: 3.6", |
34 | | - "Programming Language :: Python :: 3.7", |
35 | | - "Programming Language :: Python :: 3.8", |
36 | | - "Programming Language :: Python :: 3.9", |
37 | | - "Programming Language :: Python :: 3.10", |
38 | | - "Programming Language :: Python :: 3.11", |
39 | | - "Programming Language :: Python :: 3.12", |
40 | | - ], |
41 | | - long_description=long_description, |
42 | | - keywords='telesign, sms, voice, mobile, authentication, identity, messaging', |
43 | | - author='TeleSign Corp.', |
44 | | - author_email='support@telesign.com', |
45 | | - url="https://github.com/telesign/python_telesign", |
46 | | - install_requires=['requests'], |
47 | | - test_suite='nose.collector', |
48 | | - tests_require=['nose', 'pytz'], |
49 | | - packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES), |
50 | | - ) |
| 16 | +setup( |
| 17 | + name="telesign", |
| 18 | + version=version, |
| 19 | + description="TeleSign SDK", |
| 20 | + license="MIT", |
| 21 | + classifiers=[ |
| 22 | + "Development Status :: 5 - Production/Stable", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Natural Language :: English", |
| 26 | + "Programming Language :: Python", |
| 27 | + "Programming Language :: Python :: 2", |
| 28 | + "Programming Language :: Python :: 2.6", |
| 29 | + "Programming Language :: Python :: 2.7", |
| 30 | + "Programming Language :: Python :: 3", |
| 31 | + "Programming Language :: Python :: 3.3", |
| 32 | + "Programming Language :: Python :: 3.4", |
| 33 | + "Programming Language :: Python :: 3.5", |
| 34 | + "Programming Language :: Python :: 3.6", |
| 35 | + "Programming Language :: Python :: 3.7", |
| 36 | + "Programming Language :: Python :: 3.8", |
| 37 | + "Programming Language :: Python :: 3.9", |
| 38 | + "Programming Language :: Python :: 3.10", |
| 39 | + "Programming Language :: Python :: 3.11", |
| 40 | + "Programming Language :: Python :: 3.12", |
| 41 | + ], |
| 42 | + long_description=long_description, |
| 43 | + keywords="telesign, sms, voice, mobile, authentication, identity, messaging", |
| 44 | + author="TeleSign Corp.", |
| 45 | + author_email="support@telesign.com", |
| 46 | + url="https://github.com/telesign/python_telesign", |
| 47 | + install_requires=["requests"], |
| 48 | + test_suite="nose.collector", |
| 49 | + tests_require=["nose", "pytz"], |
| 50 | + packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES), |
| 51 | +) |
0 commit comments