You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
607 B
28 lines
607 B
#!/usr/bin/env python
|
|
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='PyNFe',
|
|
version='0.4',
|
|
author='TadaSoftware',
|
|
author_email='tadasoftware@gmail.com',
|
|
url='https://github.com/TadaSoftware',
|
|
packages=setuptools.find_packages(exclude=['tests', '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',
|
|
)
|