forked from marcydoty/Recursos-NFE-em-Python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 1.33 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
from setuptools import setup, find_packages
import os
setup(
name="python-nfe",
version="3.8",
include_package_data=True,
author="Marcilene Ribeiro",
author_email="[email protected]",
description=("Biblioteca para implementacao de notas fiscais eletronicas"),
license="LGPL",
keywords="NF-e",
url="http://github.com/marcydoty",
packages=find_packages(),
classifiers=["Development Status :: 1.0",
"Topic :: NFe",
"License :: LGPL", ],
package_dir={'nfe': 'nfe'},
package_data={'nfe': ['pysped/relato_sped/fonts/*', 'pysped/nfe/danfe/fonts/*'],
'nfe.pysped.nfe.manual_401': [os.path.join('schema', 'pl_006j', '*'),
os.path.join('schema', 'pl_006r', '*'),
os.path.join('schema', 'pl_006s', '*')],
'nfe.pysped.nfe.manual_500': [os.path.join('schema', 'pl_008e', '*')],
'nfe.pysped.xml_sped': [os.path.join('schema', '*'),
os.path.join('cadeia-certificadora', 'README'),
os.path.join('cadeia-certificadora', 'certificados', '*')],
'nfe.pysped.nfe.manifestacao_destinatario': [os.path.join('schema', 'pl', '*')]
}
)