summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
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"