Skip to content
Snippets Groups Projects
Select Git revision
  • 5dd2d93770447329862804cfa97526ea6d3c169f
  • main default protected
2 results

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