Skip to content

Commit 160c177

Browse files
Merge pull request #60 from luisiturrios1/v1.6.1
v1.6.1
2 parents dec9d4a + f7b7b5c commit 160c177

2 files changed

Lines changed: 25 additions & 25 deletions

File tree

cfdiclient/__init__.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
from .verificasolicituddescarga import VerificaSolicitudDescarga
99

1010
__all__ = [
11-
'Autenticacion',
12-
'DescargaMasiva',
13-
'Fiel',
14-
'SolicitaDescargaEmitidos',
15-
'SolicitaDescargaRecibidos',
16-
'Validacion',
17-
'VerificaSolicitudDescarga',
11+
"Autenticacion",
12+
"DescargaMasiva",
13+
"Fiel",
14+
"SolicitaDescargaEmitidos",
15+
"SolicitaDescargaRecibidos",
16+
"Validacion",
17+
"VerificaSolicitudDescarga",
1818
]
1919

20-
name = 'cfdiclient'
20+
name = "cfdiclient"
2121

22-
version = '1.6.0'
22+
version = "1.6.1"

setup.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
import setuptools
22

3-
with open('README.md', 'r') as fh:
3+
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name='cfdiclient',
8-
version='1.6.0',
9-
author='Luis Iturrios',
10-
author_email='luisiturrios1@gmail.com',
11-
description='Cliente Python Web Service del SAT para la descarga masiva de CFDIs',
7+
name="cfdiclient",
8+
version="1.6.1",
9+
author="Luis Iturrios",
10+
author_email="luisiturrios1@gmail.com",
11+
description="Cliente Python Web Service del SAT para la descarga masiva de CFDIs",
1212
long_description=long_description,
13-
long_description_content_type='text/markdown',
14-
url='https://github.com/luisiturrios1/python-cfdiclient',
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/luisiturrios1/python-cfdiclient",
1515
packages=setuptools.find_packages(),
1616
include_package_data=True,
1717
classifiers=[
18-
'Programming Language :: Python :: 2.7',
18+
"Programming Language :: Python :: 2.7",
1919
"Programming Language :: Python :: 3.6",
2020
"Programming Language :: Python :: 3.7",
2121
"Programming Language :: Python :: 3.8",
2222
"Programming Language :: Python :: 3.9",
23-
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
24-
'Operating System :: OS Independent',
23+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
24+
"Operating System :: OS Independent",
2525
],
2626
install_requires=[
27-
'lxml>=4.2.5',
28-
'requests>=2.21.0',
29-
'pycryptodome>=3.7.2',
30-
'pyOpenSSL>=18.0.0'
31-
]
27+
"lxml>=4.2.5",
28+
"requests>=2.21.0",
29+
"pycryptodome>=3.7.2",
30+
"pyOpenSSL>=18.0.0",
31+
],
3232
)

0 commit comments

Comments
 (0)