mirror of
https://gitlab.rd.nic.fr/labs/frcrawler/frcrawler.git
synced 2025-04-04 03:15:14 +02:00
36 lines
705 B
Python
36 lines
705 B
Python
#
|
|
# SPDX-FileCopyrightText: 2023 Afnic
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
requires = [
|
|
'PyYAML==6.0',
|
|
'redis==4.3.3',
|
|
'dnspython==2.3.0',
|
|
'httpx[http2]==0.24.1',
|
|
'cryptography==37.0.4',
|
|
'pyOpenSSL==22.0.0',
|
|
'psycopg[binary,pool]==3.1.9',
|
|
'idna==3.3',
|
|
'prometheus-client==0.14.1',
|
|
'clickhouse-driver==0.2.4',
|
|
'kombu==5.2.4'
|
|
]
|
|
|
|
setup(
|
|
name='frcrawler',
|
|
version='0.3.0',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=requires,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'frcrawler = frcrawler.cli:main'
|
|
],
|
|
|
|
},
|
|
)
|