-
geant-release-service authoredgeant-release-service authored
setup.py 923 B
from setuptools import setup, find_packages
setup(
name='brian-polling-manager',
version="0.17",
author='GEANT',
author_email='swd@geant.org',
description='service for managing BRIAN polling checks',
url='https://gitlab.geant.net/live-projects/brian-polling-manager',
packages=find_packages(),
install_requires=[
'click',
'requests',
'jsonschema',
'statsd',
'flask',
'lxml==4.9.4', # last wheel for py36
'ncclient==0.6.15',
'influxdb'
],
entry_points={
'console_scripts': [
'brian-polling-manager=brian_polling_manager.main:cli',
'get-interface-stats=brian_polling_manager.interface_stats.cli:cli',
'report-interface-errors=brian_polling_manager.error_report.cli:cli',
]
},
include_package_data=True,
license='MIT',
license_files=('LICENSE.txt',)
)