diff options
| author | 2025-11-18 16:53:15 +0800 | |
|---|---|---|
| committer | 2025-11-18 16:53:15 +0800 | |
| commit | cde8341265e6e266969429e6f1b0168d90206a90 (patch) | |
| tree | dfcf269c2e6bc385a7bb657d539e93cb51c9ee60 /pyproject.toml | |
| parent | c98defe9d74df8fd6b28049f2180f5fa44db6fda (diff) | |
| download | GRPS-cde8341265e6e266969429e6f1b0168d90206a90.tar.gz GRPS-cde8341265e6e266969429e6f1b0168d90206a90.zip | |
refactor: Refactor code structure for improved readability and maintainability
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 32 |
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", +] |
