aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2025-11-18 16:53:15 +0800
committerHsiangNianian <i@jyunko.cn>2025-11-18 16:53:15 +0800
commitcde8341265e6e266969429e6f1b0168d90206a90 (patch)
treedfcf269c2e6bc385a7bb657d539e93cb51c9ee60 /pyproject.toml
parentc98defe9d74df8fd6b28049f2180f5fa44db6fda (diff)
downloadGRPS-cde8341265e6e266969429e6f1b0168d90206a90.tar.gz
GRPS-cde8341265e6e266969429e6f1b0168d90206a90.zip
refactor: Refactor code structure for improved readability and maintainability
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml32
1 files changed, 32 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..6db763b
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,32 @@
+[project]
+name = "GRPS"
+version = "0.0.1"
+description = "GRPS"
+authors = [
+ { name = "简律纯", email = "leader@hydroroll.team" },
+]
+dependencies = [
+]
+requires-python = ">=3.10"
+readme = "README.rst"
+license = { text = "MIT" }
+
+[project.urls]
+Homepage = "https://grps.hydroroll.team"
+Documentation = "https://grps.hydroroll.team"
+Repository = "https://github.com/HydroRoll-Team/GRPS"
+Changelog = "https://grps.hydroroll.team/zh_CN/latest/changelog.html"
+
+[build-system]
+requires = ["hatchling"]
+build-backend = "hatchling.build"
+
+[dependency-groups]
+docs = [
+ "furo>=2025.7.19",
+ "myst-parser>=4.0.1",
+ "sphinx>=8.1.3",
+ "sphinx-autobuild>=2024.10.3",
+ "sphinx-design>=0.6.1",
+ "sphinx-intl>=2.3.1",
+]