aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/example/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example/pyproject.toml')
-rw-r--r--examples/example/pyproject.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/example/pyproject.toml b/examples/example/pyproject.toml
new file mode 100644
index 0000000..b72ff50
--- /dev/null
+++ b/examples/example/pyproject.toml
@@ -0,0 +1,17 @@
+[project]
+name = "example"
+version = "0.1.0"
+description = "示例规则包"
+authors = [
+ {name = "fu050409",email = "fu050409@163.com"},
+]
+license = {text = "AGPLv3"}
+dependencies = ["infini>2.1.0"]
+requires-python = ">=3.8"
+readme = "README.md"
+
+[tool.pdm]
+distribution = true
+
+[tool.pdm.dev-dependencies]
+dev = ["pytest"]