Skip to content
Snippets Groups Projects
Commit ed92b475 authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

re-add setup.py, and remove corresponding configuration from pyproject.toml

parent adb97365
No related branches found
No related tags found
1 merge request!39re-add setup.py, and remove corresponding configuration from pyproject.toml
Pipeline #83247 passed
[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
......
setup.py 0 → 100644
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",
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment