aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: a7f20ffd95649a3ad0064b3cc4cc26c7927dad50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[project]
name = "infini"
version = "1.0.4"
description = "The `Core` of `HydroRoll`, the `Loader` of your rules packages."
authors = [{ name = "简律纯", email = "i@jyunko.cn" }]
dependencies = ["reportlab[pycairo]>=4.0.5", "pydantic>=2.4.2", "loguru>=0.7.2"]
requires-python = ">=3.8"
readme = "README.md"
license = { text = "MIT" }

[tool.pdm.dev-dependencies]
dev = [
    "mkdocs>=1.5.3",
    "mkdocs-material[imaging]>=9.4.4",
    "mkdocs-blog-plugin>=0.25",
    "mkdocs-git-revision-date-localized-plugin>=1.2.0",
    "mkdocs-git-authors-plugin>=0.7.2",
    "mkdocs-material-extensions>=1.2",
    "neoteroi-mkdocs>=1.0.4",
    "pillow~=9.4",
    "cairosvg>=2.7.1",
    "mkdocs-git-committers-plugin-2>=1.2.0",
    "lxml>=4.9.3",
    "mkdocs-minify-plugin>=0.7.1",
    "mkdocs-rss-plugin>=1.8.0",
    "mkdocs-redirects>=1.2.1",
    "mike>=1.1.2",
    "mkdocstrings>=0.23.0",
]

[project.scripts]
infini = "infini.cli:Cli.parse_args"
ifi = "infini.cli:Cli.parse_args"

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"