aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/pyproject.toml
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2024-03-11 22:59:31 +0800
committer简律纯 <i@jyunko.cn>2024-03-11 22:59:31 +0800
commit353cef0e447733a75f1076ad9296f76f40ef9684 (patch)
treeae86ed9274da067f27f12c05492d6798030bc9bd /examples/pyproject.toml
parent8a313bea3e5e92e4d38fbc4bcf280e680e8a7c44 (diff)
downloadipm-353cef0e447733a75f1076ad9296f76f40ef9684.tar.gz
ipm-353cef0e447733a75f1076ad9296f76f40ef9684.zip
refactor!: 干掉 pdm
Diffstat (limited to 'examples/pyproject.toml')
-rw-r--r--examples/pyproject.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/pyproject.toml b/examples/pyproject.toml
new file mode 100644
index 0000000..89ca873
--- /dev/null
+++ b/examples/pyproject.toml
@@ -0,0 +1,19 @@
+[project]
+name = "examples"
+version = "0.1.0"
+description = "EXAMPLES 规则包"
+authors = [
+ {name = "admin",email = "admin@example.com"},
+]
+license = {text = "MIT"}
+webpage = ""
+unzip = 1
+dependencies = ["infini"]
+requires-python = ">=3.8"
+readme = "README.md"
+
+[tool.pdm]
+distribution = true
+
+[tool.pdm.dev-dependencies]
+dev = ["pytest"]