forked from alanjds/PySPED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.39 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name = u'PySPED',
version = '0.1dev_joaoalf_branch',
description = u'Sistema Público de Escrituração Digital em Python',
author = u'Aristides Caldeira',
author_email = u'[email protected]',
packages = find_packages(),
package_data = {'pysped.nfe.manual_401': [os.path.join(u'schema', u'pl_006g', u'*'),
os.path.join(u'schema', u'PL_006j', u'*')],
'pysped.nfe.danfe': [os.path.join(u'fonts', u'*')],
'pysped.relato_sped': [os.path.join(u'fonts', u'*')],
'pysped.xml_sped': [os.path.join(u'schema', u'*'),
os.path.join(u'cadeia-certificadora', u'README'),
os.path.join(u'cadeia-certificadora', u'*.* '),
os.path.join(u'cadeia-certificadora', u'certificados', u'*')]},
include_package_data=True,
zip_safe = False,
dependency_links = ['https://github.com/joaoalf/geraldo/tarball/master#egg=Geraldo-0.4dev_joaoalf_branch'],
install_requires=['setuptools',
'lxml',
'suds',
'PyOpenSSL==0.12',
'PyXMLSec',
'Geraldo==0.4dev_joaoalf_branch'],
)