From ed92b4759ec858671c06a9a11be1b3c037ffcb0f Mon Sep 17 00:00:00 2001 From: Karel van Klink <karel.vanklink@geant.org> Date: Wed, 5 Jul 2023 16:16:54 +0200 Subject: [PATCH] re-add setup.py, and remove corresponding configuration from pyproject.toml --- pyproject.toml | 17 ----------------- setup.py | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 17 deletions(-) create mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml index c5609df4..78360777 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,20 +1,3 @@ -[project] -name = "geant-service-orchestrator" -dynamic = ['version'] -description = "GEANT Service Orchestrator" -authors = [ - {name = "GEANT", email = "swd@geant.org"} -] -dependencies = [ - "orchestrator-core==1.0.0", - "pydantic", - "requests", -] -requires-python = ">=3.9,<3.12" - -[tool.setuptools] -packages = ["gso"] - [tool.isort] profile = "black" line_length = 120 diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..69c273ae --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +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", + ], +) -- GitLab