aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-10-07 02:50:20 +0800
committer简律纯 <i@jyunko.cn>2023-10-07 02:50:20 +0800
commitfd1f123d531e25ac066dae6a1ea8dc19fd1c0964 (patch)
treea7b1247b880af207a4aff71ae377e8a46f155d93 /pyproject.toml
parent6a63a90d8e5831e97b02cec4b67a6fb72285a2bb (diff)
downloadinfini-fd1f123d531e25ac066dae6a1ea8dc19fd1c0964.tar.gz
infini-fd1f123d531e25ac066dae6a1ea8dc19fd1c0964.zip
feat: BREAKING CHANGES
Co-authored-by: 白咕咕 <baimianxiao@users.noreply.github.com> Co-authored-by: kenichiLyon <kenichiLyon@users.noreply.github.com>
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml24
1 files changed, 12 insertions, 12 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 353f82dc..2b6ae02c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,19 +1,14 @@
-[tool.pdm.build]
-includes = ["HydroRollCore"]
-[build-system]
-requires = ["pdm-backend"]
-build-backend = "pdm.backend"
-
[project]
name = "HydroRollCore"
-version = "0.0.1"
-description = "Core of HydroRoll."
+version = "0.1.0"
+description = "The Core of HydroRoll, The Loader of your rules packages."
authors = [
{name = "简律纯", email = "i@jyunko.cn"},
]
dependencies = [
+ "iamai>=3.2.3",
"mkdocs>=1.5.3",
- "mkdocs-material>=9.4.2",
+ "mkdocs-material>=9.4.4",
"mkdocs-blog-plugin>=0.25",
"mkdocs-git-revision-date-localized-plugin>=1.2.0",
"mkdocs-git-authors-plugin>=0.7.2",
@@ -30,7 +25,12 @@ dependencies = [
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
-keywords = ["HydroRoll", "core"]
-[project.urls]
-homepage = "https://github.com/HydoRoll-Team/HydroRollCore" \ No newline at end of file
+
+[project.entry-points.pdm]
+HydroRollCore = "hydrollcore.cli:Cli.parse_args"
+HRC = "hydrollcore.cli:Cli.parse_args"
+
+[build-system]
+requires = ["pdm-backend"]
+build-backend = "pdm.backend"