Browse Source

Merge pull request #15 from danimaribeiro/fix/dependencies-setup

Melhorando setup e dependencias com a versão correta
pull/16/head
Danimar Ribeiro 9 years ago
committed by GitHub
parent
commit
edc7c758cb
  1. 5
      requirements.txt
  2. 5
      setup.py

5
requirements.txt

@ -6,9 +6,8 @@ http://xmlsoft.org/sources/python/libxml2-python-2.6.21.tar.gz
https://github.com/odoo-brazil/pyxmlsec/archive/master.zip https://github.com/odoo-brazil/pyxmlsec/archive/master.zip
Jinja2 Jinja2
signxml signxml
suds
suds_requests
reportlab
suds >= 0.4
suds_requests >= 0.3
defusedxml >= 0.4.1, < 0.5 defusedxml >= 0.4.1, < 0.5
eight >= 0.3.0, < 0.4 eight >= 0.3.0, < 0.4
cryptography >= 1.4, < 1.8 cryptography >= 1.4, < 1.8

5
setup.py

@ -1,7 +1,7 @@
# coding=utf-8 # coding=utf-8
from setuptools import setup, find_packages from setuptools import setup, find_packages
VERSION = "0.1.13"
VERSION = "0.1.14"
setup( setup(
name="PyTrustNFe", name="PyTrustNFe",
@ -29,6 +29,9 @@ later (LGPLv2+)',
install_requires=[ install_requires=[
'Jinja2 >= 2.8', 'Jinja2 >= 2.8',
'signxml >= 2.0.0', 'signxml >= 2.0.0',
'lxml >= 3.6.0, < 3.7',
'suds >= 0.4',
'suds_requests >= 0.3',
], ],
test_suite='nose.collector', test_suite='nose.collector',
tests_require=[ tests_require=[

Loading…
Cancel
Save