-
JORGE SASIAIN authoredJORGE SASIAIN authored
setup.py 417 B
from setuptools import setup, find_packages
setup(
name='geant-service-orchestrator',
version="0.1",
author='GEANT',
author_email='swd@geant.org',
description='GEANT Service Orchestrator',
url=('https://gitlab.geant.org/goat/geant-service-orchestrator'),
packages=find_packages(),
install_requires=[
'orchestrator-core==1.0.0',
'pydantic',
'requests',
]
)