diff options
| author | Loek Le Blansch <loek.le-blansch.pv@renesas.com> | 2025-10-24 08:58:05 +0200 |
|---|---|---|
| committer | Loek Le Blansch <loek.le-blansch.pv@renesas.com> | 2025-10-24 08:58:05 +0200 |
| commit | 3915d09ac0c7741e61fd113f1dd35ca7db01669f (patch) | |
| tree | d816a825739ced0d4131c15a7b1c1ff0f3af7afa /pyproject.toml | |
initial commit (split from sdk10-cmake)
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..179169b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[build-system] +requires = ["setuptools", "setuptools-scm"] +build-backend = "setuptools.build_meta" + +[project] +name = "patchtree" +description = "generate clean patches for external source trees" +version = "0.1.0" +authors = [ + { name="Loek Le Blansch", email="loek.le-blansch.pv@renesas.com" }, +] +readme = "readme.md" +requires-python = ">=3.9" +license = "MIT" +license-files = ["license"] +dependencies = [ + "jinja2", +] + +[project.urls] +Homepage = "https://bitbucket.global.renesas.com/users/loek.le-blansch.pv_renesas.com/repos/patchtree" + +[project.scripts] +patchtree = "patchtree.cli:main" + |