Skip to content
Snippets Groups Projects
Select Git revision
  • c426007de77a69e9ed3a9e9bcbfc5c038b998e56
  • develop default
  • master protected
  • async-provision
  • DBOARD3-1252/inventory-api
  • 0.88
  • 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
25 results

helpers.py

Blame
  • setup.py 431 B
    from setuptools import find_packages, setup
    
    setup(
        name="geant-service-orchestrator",
        version="0.1",
        author="GÉANT",
        author_email="swd@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==1.2.2",
            "pydantic",
            "requests",
        ],
    )