From 5165547fdbd6414c3caa2862ce4223070869e1f2 Mon Sep 17 00:00:00 2001 From: Stefan Verbruggen <27513235+sverbruggen@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:26:47 +0200 Subject: [PATCH] fix pypi reqs --- pyproject.toml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f66546f..2c2fff5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,18 @@ [project] name = "dagster-uc" version = "0.1.0" -authors = [{name = "Stefan Verbruggen"}, {name = "Ion Koutsouris"}] +authors = [{name = "Stefan Verbruggen", email="27513235+sverbruggen@users.noreply.github.com"}, {name = "Ion Koutsouris"}] +description = "CLI for managing user code deployments of a Dagster instance that was deployed on kubernetes." +readme = "README.md" +requires-python = ">=3.9" +classifiers = [ + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13" +] dependencies = [ "kr8s < 1.0", "pyhelm3==0.3.3", @@ -10,6 +21,10 @@ dependencies = [ "pytz" ] +[project.urls] +Homepage = "https://github.com/ASML-Labs/dagster-uc" +Issues = "https://github.com/ASML-Labs/dagster-uc/issues" + [build-system] requires = ["setuptools", "wheel"]