Skip to content
Snippets Groups Projects
Select Git revision
  • c5ba3b04c7a29e8d397d5ee056274a22394abb7f
  • develop default
  • master protected
  • feature/DBOARD3-1156-move-whois/nren-naming-to-inventory-update
  • inventoryProvider-functional
  • inventoryProvider-morework2
  • circuit-service-details-fix
  • lookup-SPECTRUM-SCHF-ports
  • inventoryProvider-1267-cleanup
  • inventoryProvider-moreWork
  • feature/DBOARD3-958
  • release/0.110
  • fix-uuid-validation-error
  • docker-poc
  • 0.154
  • 0.153
  • 0.152
  • 0.151
  • 0.150
  • 0.149
  • 0.148
  • 0.147
  • 0.146
  • 0.145
  • 0.144
  • 0.143
  • 0.142
  • 0.141
  • 0.140
  • 0.139
  • 0.138
  • 0.137
  • 0.136
  • 0.135
34 results

monitor.py

Blame
  • setup.py 924 B
    """Setup script for the GÉANT Service Orchestrator."""
    
    from setuptools import find_packages, setup
    
    setup(
        name="geant-service-orchestrator",
        version="3.13",
        author="GÉANT Orchestration and Automation Team",
        author_email="goat@geant.org",
        description="GÉANT Service Orchestrator",
        url="https://gitlab.software.geant.org/goat/gap/geant-service-orchestrator",
        packages=find_packages(),
        install_requires=[
            "orchestrator-core==3.1.1",
            "graphql-core==3.2.*",  # TODO: this could probably get removed the next time orchestrator-core is upgraded
            "requests==2.32.3",
            "infoblox-client==0.6.2",
            "pycountry==24.6.1",
            "pynetbox==7.4.1",
            "celery-redbeat==2.3.2",
            "celery==5.4.0",
            "azure-identity==1.21.0",
            "msgraph-sdk==1.24.0",
            "ping3==4.0.8",
            "unidecode==1.3.8",
        ],
        include_package_data=True,
    )