Skip to content
Snippets Groups Projects
Select Git revision
  • ac63a69229ce7c9eaf899aaa56939b321309915f
  • develop default protected
  • master protected
  • authorship-fix-from-develop
  • 1048-service-config-backfilling
  • feature/nat-1211-edgeport-lacp-xmit
  • fix/nat-1120-sdp-validation
  • NAT-1154-import-edge-port-update
  • fix/l3-imports
  • feature/10GGBS-NAT-980
  • fix/NAT-1009/fix-redeploy-base-config-if-there-is-a-vprn
  • 4.24
  • 4.23
  • 4.22
  • 4.21
  • 4.20
  • 4.19
  • 4.18
  • 4.17
  • 4.16
  • 4.15
  • 4.14
  • 4.13
  • 4.12
  • 4.11
  • 4.10
  • 4.8
  • 4.5
  • 4.4
  • 4.3
  • 4.2
31 results

build-docs.sh

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