Skip to content
Snippets Groups Projects
Select Git revision
  • dad7a5a64bc20fb96a32879100f66d997ab327a7
  • develop default
  • master protected
  • feature/frontend-tests
  • 0.99
  • 0.98
  • 0.97
  • 0.96
  • 0.95
  • 0.94
  • 0.93
  • 0.92
  • 0.91
  • 0.90
  • 0.89
  • 0.88
  • 0.87
  • 0.86
  • 0.85
  • 0.84
  • 0.83
  • 0.82
  • 0.81
  • 0.80
24 results

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