Skip to content
Snippets Groups Projects
Select Git revision
  • de21187d18aee2fa15b5d8f97d7d77903a0b4be0
  • develop default protected
  • redploy-placement-port
  • master protected
  • feature/NAT-1574-add-moodi-for-ixs
  • authorship-fix-from-develop
  • 1048-service-config-backfilling
  • feature/nat-1211-edgeport-lacp-xmit
  • fix/nat-1120-sdp-validation
  • NAT-1154-import-edge-port-update
  • fix/l3-imports
  • feature/10GGBS-NAT-980
  • fix/NAT-1009/fix-redeploy-base-config-if-there-is-a-vprn
  • 4.12
  • 4.11
  • 4.10
  • 4.8
  • 4.5
  • 4.4
  • 4.3
  • 4.2
  • 4.1
  • 4.0
  • 3.12
  • 3.11
  • 3.10
  • 3.9
  • 3.8
  • 3.7
  • 3.6
  • 3.5
  • 3.4
  • 3.3
33 results

setup.py

Blame
  • Karel van Klink's avatar
    de21187d
    History
    setup.py 839 B
    """Setup script for the GÉANT Service Orchestrator."""
    
    from setuptools import find_packages, setup
    
    setup(
        name="geant-service-orchestrator",
        version="2.42",
        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.*",
            "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,
    )