-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
36 lines (30 loc) · 1001 Bytes
/
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
31
32
33
34
35
36
from importlib.machinery import SourceFileLoader
from setuptools import find_packages, setup
version = SourceFileLoader('version', 'cep/version.py').load_module()
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='cepmex',
version=version.__version__,
author='Cuenca',
author_email='dev@cuenca.com',
description='CEP client library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cuenca-mx/cep-python',
packages=find_packages(),
include_package_data=True,
package_data=dict(cep=['py.typed']),
python_requires='>=3.7',
install_requires=[
'requests>=2.25,<2.32',
'clabe>=1.2.4,<1.3',
'lxml>=4.6.2,<4.10',
'dataclasses>=0.6;python_version<"3.7"',
],
classifiers=[
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)