Skip to content
Snippets Groups Projects
Select Git revision
  • 0c9a6617afb65c6b09e269b1fa86903b1a3b0cdf
  • 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

survey-bundle.js

Blame
  • setup.py 923 B
    from setuptools import setup, find_packages
    
    setup(
        name='brian-polling-manager',
        version="0.18",
        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',
            'lxml==4.9.4',  # last wheel for py36
            'ncclient==0.6.15',
            'influxdb'
        ],
        entry_points={
            'console_scripts': [
                'brian-polling-manager=brian_polling_manager.main:cli',
                'get-interface-stats=brian_polling_manager.interface_stats.cli:cli',
                'report-interface-errors=brian_polling_manager.error_report.cli:cli',
            ]
        },
        include_package_data=True,
        license='MIT',
        license_files=('LICENSE.txt',)
    )