|
1 | 1 | import setuptools |
2 | 2 |
|
3 | 3 | with open("README.md", "r") as fh: |
4 | | - long_description = fh.read() |
| 4 | + long_description = fh.read() |
5 | 5 |
|
6 | 6 | setuptools.setup( |
7 | | - name="IP2Proxy", |
8 | | - version="3.2.0", |
9 | | - author="IP2Location", |
10 | | - author_email="support@ip2location.com", |
11 | | - description="Python API for IP2Proxy database. It can be used to query an IP address if it was being used as open proxy, web proxy, VPN anonymizer and TOR exits.", |
12 | | - long_description=long_description, |
13 | | - long_description_content_type="text/markdown", |
14 | | - py_modules=['IP2Proxy'], |
15 | | - url="https://github.com/ip2location/ip2proxy-python", |
16 | | - packages=setuptools.find_packages(), |
17 | | - tests_require=['pytest>=3.0.6'], |
18 | | - classifiers=( |
19 | | - "Development Status :: 5 - Production/Stable", |
20 | | - "Intended Audience :: Developers", |
21 | | - "Topic :: Software Development :: Libraries :: Python Modules", |
22 | | - "Programming Language :: Python :: 2.7", |
23 | | - "Programming Language :: Python :: 3", |
24 | | - "License :: OSI Approved :: MIT License", |
25 | | - "Operating System :: OS Independent", |
26 | | - ), |
| 7 | + name="IP2Proxy", |
| 8 | + version="3.2.1", |
| 9 | + author="IP2Location", |
| 10 | + author_email="support@ip2location.com", |
| 11 | + description="Python API for IP2Proxy database. It can be used to query an IP address if it was being used as open proxy, web proxy, VPN anonymizer and TOR exits.", |
| 12 | + long_description=long_description, |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + py_modules=['IP2Proxy'], |
| 15 | + url="https://github.com/ip2location/ip2proxy-python", |
| 16 | + packages=setuptools.find_packages(), |
| 17 | + tests_require=['pytest>=3.0.6'], |
| 18 | + classifiers=( |
| 19 | + "Development Status :: 5 - Production/Stable", |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 22 | + "Programming Language :: Python :: 2.7", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Operating System :: OS Independent", |
| 26 | + ), |
27 | 27 | ) |
0 commit comments