Skip to content
Snippets Groups Projects
Select Git revision
  • f6fd65fca5c3a38ded07d948c45377becca36ce0
  • develop default
  • NGM-30-hover-popup
  • master protected
  • svg-test
  • master-conflicted
  • 0.5
  • 0.4
  • 0.3
  • 0.2
  • 0.1
11 results

cache.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",
        ],
    )