Skip to content
Snippets Groups Projects
Select Git revision
  • 803e3aecdca5751a76501b0cfedf4471d08ad91d
  • develop default
  • master protected
  • async-provision
  • DBOARD3-1252/inventory-api
  • 0.87
  • 0.86
  • 0.85
  • 0.84
  • 0.83
  • 0.82
  • 0.81
  • 0.80
  • 0.79
  • 0.78
  • 0.77
  • 0.76
  • 0.75
  • 0.74
  • 0.73
  • 0.72
  • 0.71
  • 0.70
  • 0.69
  • 0.68
25 results

organization.py

Blame
  • setup.py 781 B
    """Setup script for the GÉANT Service Orchestrator."""
    
    from setuptools import find_packages, setup
    
    setup(
        name="geant-service-orchestrator",
        version="2.21",
        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.7.6",
            "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",
        ],
        include_package_data=True,
    )