aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-09-27 17:31:16 +0800
committer简律纯 <i@jyunko.cn>2023-09-27 17:31:16 +0800
commitba4129933cdb6d91e695b2de900b8753652ec385 (patch)
treec520d508bf50cd22ea3123840f4aff77f148256b /pyproject.toml
parent3ad303968524f6dc57b7d5900e33963c77342552 (diff)
downloadTRPGNivis-ba4129933cdb6d91e695b2de900b8753652ec385.tar.gz
TRPGNivis-ba4129933cdb6d91e695b2de900b8753652ec385.zip
feat(pyproject): 优化python包管理结构
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml22
1 files changed, 22 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..97a7768
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,22 @@
+[project]
+name = "psi"
+version = "0.1.0"
+description = "An embedded cli language | Psi reply"
+authors = [
+ {name = "简律纯", email = "i@jyunko.cn"},
+]
+dependencies = [
+ "mkdocs-material>=9.4.2",
+ "mkdocs-blog-plugin>=0.25",
+ "mkdocs-git-revision-date-localized-plugin>=1.2.0",
+ "mkdocs-git-authors-plugin>=0.7.2",
+ "mkdocs-material-extensions>=1.2",
+ "neoteroi-mkdocs>=1.0.4",
+]
+requires-python = ">=3.8"
+readme = "README.md"
+license = {text = "MIT"}
+
+[build-system]
+requires = ["pdm-backend"]
+build-backend = "pdm.backend"