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.
54 lines
1.5 KiB
54 lines
1.5 KiB
# coding=utf-8
|
|
from setuptools import setup, find_packages
|
|
|
|
VERSION = "1.0.6"
|
|
|
|
|
|
setup(
|
|
name="PyTrustNFe",
|
|
version=VERSION,
|
|
author="Danimar Ribeiro",
|
|
author_email='danimaribeiro@gmail.com',
|
|
keywords=['nfe', 'mdf-e'],
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Plugins',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: GNU Lesser General Public License v2 or \
|
|
later (LGPLv2+)',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
packages=find_packages(exclude=['*test*']),
|
|
package_data={'pytrustnfe': [
|
|
'nfe/templates/*xml',
|
|
'nfse/paulistana/templates/*xml',
|
|
'nfse/ginfes/templates/*xml',
|
|
'nfse/simpliss/templates/*xml',
|
|
'nfse/betha/templates/*xml',
|
|
'nfse/susesu/templates/*xml',
|
|
'nfse/imperial/templates/*xml',
|
|
'xml/schemas/*xsd',
|
|
]},
|
|
url='https://github.com/danimaribeiro/PyTrustNFe',
|
|
license='LGPL-v2.1+',
|
|
description='PyTrustNFe é uma biblioteca para envio de NF-e',
|
|
long_description=open('README.md', 'r').read(),
|
|
long_description_content_type='text/markdown',
|
|
install_requires=[
|
|
'Jinja2 >= 2.8',
|
|
'signxml >= 2.4.0',
|
|
'suds >= 0.4',
|
|
'suds_requests >= 0.3',
|
|
'reportlab',
|
|
'lxml',
|
|
'pytz',
|
|
'zeep'
|
|
],
|
|
test_suite='nose.collector',
|
|
tests_require=[
|
|
'nose',
|
|
'mock',
|
|
],
|
|
)
|