|
1 | 1 | #!/usr/bin/env python |
2 | 2 | import setuptools |
3 | 3 |
|
| 4 | +with open("README.md", "r", encoding="utf-8") as fh: |
| 5 | + long_description = fh.read() |
| 6 | + |
4 | 7 | setuptools.setup( |
5 | 8 | name='PyNFe', |
6 | | - version='0.4', |
| 9 | + version='0.4.1', |
7 | 10 | author='TadaSoftware', |
8 | 11 | author_email='tadasoftware@gmail.com', |
9 | | - url='https://github.com/TadaSoftware', |
10 | | - packages=setuptools.find_packages(exclude=['tests', 'tests.*']), |
| 12 | + description="Interface library with the Brazilian Electronic Invoice web services", |
| 13 | + long_description=long_description, |
| 14 | + long_description_content_type="text/markdown", |
| 15 | + url='https://github.com/TadaSoftware/PyNFe', |
| 16 | + project_urls={ |
| 17 | + "Bug Tracker": "https://github.com/TadaSoftware/PyNFe/issues", |
| 18 | + "Wiki": "https://github.com/TadaSoftware/PyNFe/wiki", |
| 19 | + "Discussions": "https://github.com/TadaSoftware/PyNFe/discussions" |
| 20 | + }, |
| 21 | + classifiers=[ |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", |
| 24 | + "Topic :: Software Development :: Libraries", |
| 25 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 26 | + "Operating System :: OS Independent", |
| 27 | + ], |
| 28 | + packages=setuptools.find_packages( |
| 29 | + exclude=['tests']), |
11 | 30 | package_data={ |
12 | 31 | 'pynfe': ['data/**/*.txt'], |
13 | 32 | }, |
|
0 commit comments