Skip to content
Snippets Groups Projects
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",
    ],
)