aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2025-12-23 15:42:25 +0100
committerDaniel Schadt <kingdread@gmx.de>2025-12-23 15:42:25 +0100
commit670e13da2b802ccb47c3805251627394eeac3523 (patch)
tree62ddd47662d98789b7582327d8c24fbdfa20a682 /pyproject.toml
downloadcbp-670e13da2b802ccb47c3805251627394eeac3523.tar.gz
cbp-670e13da2b802ccb47c3805251627394eeac3523.tar.bz2
cbp-670e13da2b802ccb47c3805251627394eeac3523.zip
initial commit
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..9239890
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,20 @@
+[project]
+name = "cbp"
+version = "0.1.0"
+description = ""
+authors = [
+ {name = "Your Name",email = "you@example.com"}
+]
+requires-python = ">=3.13"
+dependencies = [
+ "jinja2 (>=3.1.6,<4.0.0)",
+ "markdown (>=3.10,<4.0)",
+ "click (>=8.3.1,<9.0.0)"
+]
+
+[project.scripts]
+cbp = "cbp:main"
+
+[build-system]
+requires = ["poetry-core>=2.0.0,<3.0.0"]
+build-backend = "poetry.core.masonry.api"