aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml8
1 files changed, 6 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 0698b02..7c742aa 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -9,7 +9,6 @@ description = "Core of HydroRoll System."
authors = [{ name = "简律纯", email = "i@jyunko.cn" }]
dependencies = [
"ply>=3.11",
- "pip>=24.0",
]
requires-python = ">=3.9"
readme = "README.rst"
@@ -20,7 +19,6 @@ homepage = "https://core.hydroroll.team/"
repository = "https://github.com/HydroRoll-Team/HydroRollCore"
documentation = "https://core.hydroroll.team/"
-
[tool.pdm.dev-dependencies]
docs = [
"furo>=2024.1.29",
@@ -34,6 +32,9 @@ docs = [
lint = [
"ruff>=0.3.0",
]
+dev = [
+ "pip>=24.0",
+]
[tool.ruff]
# Exclude a variety of commonly ignored directories.
@@ -97,3 +98,6 @@ skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
+
+[tool.maturin]
+module-name = "hydro_roll_core.corelib"