Skip to content
Snippets Groups Projects
Select Git revision
  • 8ed0d25cf968c0a1970e7ba7787516500690f029
  • develop default protected
  • inventory-auth
  • master protected
  • feature/POL1-813-error-report-sensu-check
  • 0.21
  • 0.20
  • 0.19
  • 0.18
  • 0.17
  • 0.16
  • 0.15
  • 0.14
  • 0.13
  • 0.12
  • 0.11
  • 0.10
  • 0.9
  • 0.8
  • 0.7
  • 0.6
  • 0.5
  • 0.4
  • 0.3
  • 0.2
25 results

setup.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,
    )