From 5971e8f8a9e1fdd69e6f6a70fa32f62b1fa18568 Mon Sep 17 00:00:00 2001 From: Lorenzo Stella Date: Wed, 6 Dec 2023 10:56:20 +0100 Subject: [PATCH 1/4] add name to pyproject --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 56b535a582..79f53ca7c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,6 @@ +[project] +name = "gluonts" + [tool.black] line-length = 79 From 0825d686de9998f468581c0c0ebbf8fc3700c80c Mon Sep 17 00:00:00 2001 From: Lorenzo Stella Date: Thu, 28 Dec 2023 14:42:55 +0100 Subject: [PATCH 2/4] Update pyproject.toml --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 79f53ca7c8..d7403e5e19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [project] name = "gluonts" +dynamic = ["version"] [tool.black] line-length = 79 @@ -42,3 +43,7 @@ wrap-descriptions = 79 ignore_missing_imports = true allow_redefinition = true follow_imports = "silent" + +[tool.setuptools.dynamic] +version = {attr = "gluonts.__version__"} + From 9ada90ad532d8f24b06bc1f4c5e5642d58c4eb25 Mon Sep 17 00:00:00 2001 From: Lorenzo Stella Date: Thu, 28 Dec 2023 14:59:29 +0100 Subject: [PATCH 3/4] Update pyproject.toml --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d7403e5e19..54294d32d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,7 @@ [project] name = "gluonts" -dynamic = ["version"] +dynamic = ["version", "readme"] +description = "Probabilistic time series modeling in Python." [tool.black] line-length = 79 @@ -46,4 +47,5 @@ follow_imports = "silent" [tool.setuptools.dynamic] version = {attr = "gluonts.__version__"} +readme = {file = "README.md", content-type = "text/markdown"} From 78ec04e52b8d57220eae74c0720e3e079280bad4 Mon Sep 17 00:00:00 2001 From: Lorenzo Stella Date: Thu, 28 Dec 2023 21:42:30 +0100 Subject: [PATCH 4/4] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 54294d32d2..37d6f6cb1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,7 @@ name = "gluonts" dynamic = ["version", "readme"] description = "Probabilistic time series modeling in Python." +requires-python = ">=3.7" [tool.black] line-length = 79