Fix: Se actualizan dependencias para python3.12 y primeros pasos con pruebas

This commit is contained in:
2024-06-11 15:59:44 -05:00
parent c12d985f76
commit 6e5d358c73
7 changed files with 707 additions and 687 deletions

View File

@@ -13,6 +13,21 @@ with open('README.rst') as readme_file:
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = ['Click>=8.1.7',
'zeep==4.2.1',
'lxml==5.2.2',
'cryptography==42.0.8',
'pyOpenSSL==24.1.0',
'xmlsig==1.0.1',
'xades==1.0.0',
'xmlsec==1.3.14',
# usamos esta dependencia en runtime
# para forzar uso de policy_id de archivo local
'mock>=5.1.0',
'xmlschema>=3.0.0']
"""
Listado de Versiones Anteriores
requirements = ['Click>=6.0',
'zeep==4.0.0',
'lxml==4.6.3',
@@ -26,6 +41,8 @@ requirements = ['Click>=6.0',
'mock>=2.0.0',
'xmlschema>=1.8']
"""
setup_requirements = ['pytest-runner', ]
test_requirements = ['pytest', ]
@@ -39,10 +56,10 @@ setup(
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
description="Facturacion Electronica Colombia",
entry_points={