Skip to content
Snippets Groups Projects
Select Git revision
  • 48ab40fb4ea3796d68f9208b5df667d130834f22
  • develop default protected
  • master protected
  • feature/POL1-813-error-report-sensu-check
  • 0.21
  • 0.20
  • 0.19
  • 0.18
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
  • 0.2
24 results

setup.py

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