Skip to content
Snippets Groups Projects
Select Git revision
  • 84d8d960df940198b222baf4a8fe3756c622376c
  • develop default
  • master protected
  • 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
33 results

setup.py

Blame
  • setup.py 756 B
    """Setup script for the GÉANT Service Orchestrator."""
    
    from setuptools import find_packages, setup
    
    setup(
        name="geant-service-orchestrator",
        version="2.8",
        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==2.6.1",
            "requests==2.31.0",
            "infoblox-client~=0.6.0",
            "pycountry==23.12.11",
            "pynetbox==7.3.3",
            "celery-redbeat==2.2.0",
            "celery==5.3.6",
            "azure-identity==1.16.0",
            "msgraph-sdk==1.2.0",
        ],
        include_package_data=True,
    )