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.geant.org/goat/geant-service-orchestrator", packages=find_packages(), install_requires=[ "orchestrator-core==1.0.0", "pydantic", "requests", ], )