aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-10-07 03:40:55 +0800
committer简律纯 <i@jyunko.cn>2023-10-07 03:40:55 +0800
commiteba74ab903dadf43acefbd145a501e83f56d104f (patch)
tree3a4bbd98adaf923aaa793fd53ef032421ce346cb /pyproject.toml
parent956e7e7e98778993131fe5c03578ae46800dd2a3 (diff)
downloadinfini-eba74ab903dadf43acefbd145a501e83f56d104f.tar.gz
infini-eba74ab903dadf43acefbd145a501e83f56d104f.zip
fix(cli): new commandv0.1.1
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml16
1 files changed, 7 insertions, 9 deletions
diff --git a/pyproject.toml b/pyproject.toml
index f73edbbb..b74d6ef2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,12 +1,9 @@
[project]
name = "HydroRollCore"
-version = "0.1.0-rc1"
+version = "0.1.1"
description = "The Core of HydroRoll, The Loader of your rules packages."
-authors = [
- {name = "简律纯", email = "i@jyunko.cn"},
-]
+authors = [{ name = "简律纯", email = "i@jyunko.cn" }]
dependencies = [
- "iamai>=3.2.3",
"mkdocs>=1.5.3",
"mkdocs-material>=9.4.4",
"mkdocs-blog-plugin>=0.25",
@@ -24,13 +21,14 @@ dependencies = [
]
requires-python = ">=3.8"
readme = "README.md"
-license = {text = "MIT"}
+license = { text = "MIT" }
-[project.entry-points.pdm]
-HydroRollCore = "hydrollcore.cli:Cli.parse_args"
-HRC = "hydrollcore.cli:Cli.parse_args"
+[project.scripts]
+HydroRollCore = "HydroRollCore.cli:Cli.parse_args"
+HRC = "HydroRollCore.cli:Cli.parse_args"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
+