From d0a0a760da5700d199f772973bd57e15aac90bc7 Mon Sep 17 00:00:00 2001 From: Artur Borecki Date: Sun, 15 Sep 2024 14:38:34 +0200 Subject: [PATCH] build(pyproject.toml): add pyproject.toml --- pyproject.toml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c2fb4bd --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,39 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "" +dynamic = ["version"] +depedencies = [ + "...", +] +requires-python = ">=3.9" +authors = [ + {name="Artur Borecki", email="me@pufereq.pl"} +] +description = "..." +readme = "README.md" +keywords = ["..."] +classifiers = [ + "Programming Language :: Python :: 3", + "...", +] + +[project.urls] +Homepage = "..." +Repository = "..." +"Bug Tracker" = "..." +Changelog = "..." + +[project.optional-dependencies] +dev = [ + "hatchling", + "pytest", + "pytest-cov", + "black", +] + +[tool.hatch.version] +path = ".../__init__.py" +pattern = "__version__ = \"(?P.*)\""