Skip to content
Snippets Groups Projects
Select Git revision
  • ff66f379fb51e24a2e520d080a020dc2db8814bf
  • develop default
  • master protected
  • NGM-30-hover-popup
  • svg-test
  • master-conflicted
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
  • 0.2
  • 0.1
14 results

conftest.py

Blame
  • setup.py 610 B
    from setuptools import setup, find_packages
    
    setup(
        name='brian-polling-manager',
        version="0.6",
        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,
    )