forked from aricaldeira/PySPED
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
68 lines (66 loc) · 2.05 KB
/
setup.py
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from setuptools import setup
test_requirements = ['pyflakes>=0.6.1']
setup(
name = "PySPED",
version = "1.2.0",
author = "Aristides Caldeira",
author_email = '[email protected]',
test_suite='tests',
keywords = ['nfe', 'nfse', 'cte', 'sped', 'edf', 'ecd'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'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 = [
'pysped',
'pysped.nfe',
'pysped.nfe.leiaute',
'pysped.nfe.danfe',
'pysped.nfe.manual_300',
'pysped.nfe.manual_401',
'pysped.cte',
'pysped.cte.leiaute',
'pysped.cte.dacte',
'pysped.efd',
# 'pysped.nfse',
'pysped.xml_sped',
'pysped.ecd',
'pysped.nf_paulista',
'pysped.relato_sped',
'pysped.exemplos',
],
package_data = {
'pysped.nfe.danfe': ['fonts/*', '*.odt'],
'pysped.relato_sped': ['fonts/*'],
'pysped.nfe.leiaute': ['schema/*/*'],
'pysped.cte.leiaute': ['schema/*/*'],
'pysped.xml_sped': ['cadeia-certificadora/*/*']
},
url = 'https://github.com/aricaldeira/PySPED',
license = 'LGPL-v2.1+',
description = 'PySPED is a library to implement all requirements of the Brazilian Public System of Digital Bookkeeping',
long_description = open('README.rst').read(),
dependency_links=[
'http://github.com/odoo-brazil/pybrasil/tarball/master#egg=pybrasil-0.0.0.2',
],
install_requires=[
'lxml >= 3.8.0',
'qrcode >=5.3',
'sh >=1.12.14',
'signxml==2.5.2',
'cryptography==2.2.2',
'pyOpenSSL==17.5.0',
'pytz==2017.2',
'py3o.template==0.9.13',
'Geraldo==0.4.17',
'Genshi==0.7',
'future==0.16.0',
'pybrasil==0.0.0.2',
],
tests_require=test_requirements,
)