This commit is contained in:
Jovany Leandro G.C 2020-10-18 17:31:00 -05:00
parent 4cda6344e5
commit c170114680
4 changed files with 6 additions and 11 deletions

View File

@ -2,7 +2,5 @@
History
=======
0.1.0 (2019-12-31)
------------------
* First release on PyPI.

View File

@ -19,9 +19,7 @@ al instalar el paquete se genera el comando *facho*
# CÓMO CONTRIBUIR?
## INSTALAR USANDO python develop
este enlaza el ejecutable **facho** en lugar de copiarlo.
ver **CONTRIBUTING.rst**
## CUMPLIR ANEXO TECNICO

View File

@ -11,14 +11,14 @@ Libreria para facturacion electronica colombia.
- facho/fe/client/dian.py(DianClient): cliente para consultas sincronicas a API de DIAN
DIAN HABILITACION CERTIFICADO DE PRUEBA
===============================
DIAN HABILITACION
=================
guia oficial actualizada al 2020-04-20: https://www.dian.gov.co/fizcalizacioncontrol/herramienconsulta/FacturaElectronica/Facturaci%C3%B3n_Gratuita_DIAN/Documents/Guia_usuario_08052019.pdf#search=numeracion
ERROR X509SerialNumber
=============
======================
lxml.etree.DocumentInvalid: Element '{http://www.w3.org/2000/09/xmldsig#}X509SerialNumber': '632837201711293159666920255411738137494572618415' is not a valid value of the atomic type 'xs:integer'

View File

@ -33,8 +33,6 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
@ -50,6 +48,7 @@ setup(
install_requires=requirements,
license="GNU General Public License v3",
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
include_package_data=True,
package_data = {
# If any package contains *.txt or *.rst files, include them:
@ -62,6 +61,6 @@ setup(
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/bit4bit/facho',
version='0.1.1',
version='0.1.2',
zip_safe=False,
)