|
1 | 1 | import setuptools |
2 | 2 |
|
3 | | -with open('README.md', 'r') as fh: |
| 3 | +with open("README.md", "r") as fh: |
4 | 4 | long_description = fh.read() |
5 | 5 |
|
6 | 6 | setuptools.setup( |
7 | | - name='cfdiclient', |
8 | | - version='1.6.0', |
9 | | - author='Luis Iturrios', |
10 | | - author_email='luisiturrios1@gmail.com', |
11 | | - description='Cliente Python Web Service del SAT para la descarga masiva de CFDIs', |
| 7 | + name="cfdiclient", |
| 8 | + version="1.6.1", |
| 9 | + author="Luis Iturrios", |
| 10 | + author_email="luisiturrios1@gmail.com", |
| 11 | + description="Cliente Python Web Service del SAT para la descarga masiva de CFDIs", |
12 | 12 | long_description=long_description, |
13 | | - long_description_content_type='text/markdown', |
14 | | - url='https://github.com/luisiturrios1/python-cfdiclient', |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + url="https://github.com/luisiturrios1/python-cfdiclient", |
15 | 15 | packages=setuptools.find_packages(), |
16 | 16 | include_package_data=True, |
17 | 17 | classifiers=[ |
18 | | - 'Programming Language :: Python :: 2.7', |
| 18 | + "Programming Language :: Python :: 2.7", |
19 | 19 | "Programming Language :: Python :: 3.6", |
20 | 20 | "Programming Language :: Python :: 3.7", |
21 | 21 | "Programming Language :: Python :: 3.8", |
22 | 22 | "Programming Language :: Python :: 3.9", |
23 | | - 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', |
24 | | - 'Operating System :: OS Independent', |
| 23 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 24 | + "Operating System :: OS Independent", |
25 | 25 | ], |
26 | 26 | install_requires=[ |
27 | | - 'lxml>=4.2.5', |
28 | | - 'requests>=2.21.0', |
29 | | - 'pycryptodome>=3.7.2', |
30 | | - 'pyOpenSSL>=18.0.0' |
31 | | - ] |
| 27 | + "lxml>=4.2.5", |
| 28 | + "requests>=2.21.0", |
| 29 | + "pycryptodome>=3.7.2", |
| 30 | + "pyOpenSSL>=18.0.0", |
| 31 | + ], |
32 | 32 | ) |
0 commit comments