2020-09-04 00:24:21 +02:00
|
|
|
"""
|
2020-09-04 18:21:54 +02:00
|
|
|
Setup file for the website checker.
|
2020-09-04 00:24:21 +02:00
|
|
|
"""
|
|
|
|
from setuptools import setup # type: ignore
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
use_scm_version=True,
|
|
|
|
setup_requires=['setuptools_scm'],
|
2020-09-07 14:57:05 +02:00
|
|
|
python_requires='>=3.6, <4',
|
2020-09-04 00:24:21 +02:00
|
|
|
install_requires=[
|
|
|
|
'aiokafka==0.6.0',
|
|
|
|
'asyncpg==0.21.0',
|
2020-09-04 18:21:54 +02:00
|
|
|
'pydantic==1.6.1',
|
2020-09-04 00:24:21 +02:00
|
|
|
'PyYAML==5.3.1',
|
|
|
|
'requests==2.24.0',
|
|
|
|
],
|
|
|
|
include_package_data=True,
|
|
|
|
)
|