setup.py 544 B
from setuptools import setup, find_packages
setup(
name='brian-polling-manager',
version='0.1',
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'
],
entry_points={
'console_scripts': [
'brian-polling-manager=brian_polling_manager.cli:main'
]
},
)