-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 913 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
"""Setup script for cz_nia."""
from setuptools import find_packages, setup
import cz_nia
setup(name='cz_nia',
version=cz_nia.__version__,
author='Tomas Pazderka',
author_email='[email protected]',
url='https://github.com/CZ-NIC/python-cz-nia',
description='Python application for communication with Czech NIA.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
python_requires='~=3.8',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=['zeep @ git+https://github.com/tpazderka/python-zeep.git@signed_parts',
'xmlsec',
'lxml ~= 5.0'],
extras_require={'quality': ['isort', 'flake8', 'pydocstyle', 'mypy'],
'tests': ['responses'],
'types': ['types-requests']})