Skip to content
Snippets Groups Projects
Select Git revision
  • df441fd9546ef3c178f2d8351f16d3029de60134
  • develop default protected
  • 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
24 results

cli.py

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