summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 4ce6971ec41af9a8d160ef0164c2f3a59bf15cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"