Skip to content
Snippets Groups Projects
Select Git revision
  • 9c347e45878adb3ea1709d6d03ea70f80f652972
  • develop default
  • master protected
  • feature/frontend-tests
  • 0.99
  • 0.98
  • 0.97
  • 0.96
  • 0.95
  • 0.94
  • 0.93
  • 0.92
  • 0.91
  • 0.90
  • 0.89
  • 0.88
  • 0.87
  • 0.86
  • 0.85
  • 0.84
  • 0.83
  • 0.82
  • 0.81
  • 0.80
24 results

conftest.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,
    )