forked from TadaSoftware/PyNFe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.41 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.41 KB
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
#!/usr/bin/env python
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='PyNFe',
version='0.4.2',
author='TadaSoftware',
author_email='tadasoftware@gmail.com',
description="Interface library with the Brazilian Electronic Invoice web services",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/TadaSoftware/PyNFe',
project_urls={
"Bug Tracker": "https://github.com/TadaSoftware/PyNFe/issues",
"Wiki": "https://github.com/TadaSoftware/PyNFe/wiki",
"Discussions": "https://github.com/TadaSoftware/PyNFe/discussions"
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(
exclude=['tests']),
package_data={
'pynfe': ['data/**/*.txt'],
},
install_requires=[
'pyopenssl',
'requests',
'lxml',
'signxml',
],
extras_require={
'nfse': [
'suds-jurko',
'pyxb==1.2.4',
],
},
zip_safe=False,
python_requires='>=3.6',
)