-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
30 lines (24 loc) · 882 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
from importlib.machinery import SourceFileLoader
import setuptools
version = SourceFileLoader('version', 'clabe/version.py').load_module()
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='clabe',
version=version.__version__,
author='Cuenca',
author_email='[email protected]',
description='Validate and generate the control digit of a CLABE in Mexico',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cuenca-mx/clabe',
packages=setuptools.find_packages(),
include_package_data=True,
package_data=dict(clabe=['py.typed']),
install_requires=['pydantic>=1.4,<2.0'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)