summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2024-02-20 21:26:58 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2024-02-20 21:26:58 +0100
commite8b7eaf6255ce94660fd0e66e2da24a01bf651d9 (patch)
treeb83595a870758063d07e86388e22499219c6665c /pyproject.toml
parent317df7cf30be4c7051a1c45bc2a2af0c6604e009 (diff)
Add source code
Diffstat (limited to 'pyproject.toml')
-rwxr-xr-xpyproject.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100755
index 0000000..4ce6971
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,19 @@
+[project]
+name = "pnote"
+dynamic = ["version"]
+dependencies = ["jsonschema"]
+description = "Simple note management tool"
+readme = "README.md"
+
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+
+[tool.setuptools.packages.find]
+exclude = ["env*"]
+
+[tool.setuptools.dynamic]
+version = {attr = "pnote.__version__"}
+
+[project.scripts]
+pnote = "pnote:main"