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.

23 lines
666 B

#!/usr/bin/env python
import setuptools
try: # for pip >= 10
from pip._internal.req import parse_requirements as parse
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements as parse
requirements = lambda f: [str(i.req) for i in parse(f, session=False)]
setuptools.setup(
name='PyNFe',
version='0.4',
author='TadaSoftware',
author_email='tadasoftware@gmail.com',
url='https://github.com/TadaSoftware',
packages=setuptools.find_packages(),
package_data={
'pynfe': ['data/**/*.txt'],
},
install_requires=requirements('requirements.txt'),
zip_safe=False,
python_requires='>=3.6',
)