Skip to content
Snippets Groups Projects
Select Git revision
  • d2725a11756fcd5022dc288b86f48817a72222c3
  • develop default
  • master protected
  • feature/frontend-tests
  • 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
  • 0.79
24 results

App.tsx

Blame
  • setup.py 856 B
    """Setup script for the GÉANT Service Orchestrator."""
    
    from setuptools import find_packages, setup
    
    setup(
        name="geant-service-orchestrator",
        version="2.40",
        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.8.0",
            "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",
            "ping3==4.0.8",
            "unidecode==1.3.8",
            "microsoft-kiota-abstractions==1.9.0",
        ],
        include_package_data=True,
    )