From 8d676e152d6dd9d0ad7a029ba7724bf1d7c01746 Mon Sep 17 00:00:00 2001 From: David Beal Date: Wed, 27 Jul 2022 15:16:46 +0200 Subject: [PATCH] switch to toml --- pyproject.toml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b10dccf --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,35 @@ +[build-system] +requires = [ + "hatchling>=1.6.0", +] +build-backend = "hatchling.build" + +[project] +name = "ak" +description = "simple cli for Odoo" +readme = "README.md" +license = "AGPLv3+" +authors = [ + { name = "Akretion", email = "contact@akretion.com" }, +] +dependencies = [ + "git-aggregator >= 1.6.0", + "kaptan >= 0.5.12", + "plumbum >= 1.6.7", + "PyYAML >= 5.1", + "requests", +] +dynamic = [ + "version", +] + +[project.urls] +Homepage = "https://github.com/akretion/ak" + +[tool.hatch.version] +path = "ak/__init__.py" + +[tool.hatch.build.targets.sdist] +include = [ + "/ak", +]