aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: 590017640b01bd20ec16ba69348aab18916012de (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
38
39
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "hydromvp"
dynamic = ["version"]
description = "MVP Implementation in Rust and Python by HydroRoll-Team"
authors = [
    { name = "HsiangNianian", email = "leader@hydroroll.team" }
]
requires-python = ">=3.11"
readme = "README.md"
license = { text = "AGPL-3.0" }
classifiers = [
    "License :: OSI Approved :: AGPL-3.0",
    "Programming Language :: Rust",
    "Programming Language :: Python :: 3",
]
dependencies = [
    "aiohttp>=3.13.2",
    "conventionalrp>=1.2.1",
    "fastapi>=0.121.0",
    "infini>=2.1.15",
    "ipdm>=0.1.4",
    "oneroll>=1.3.4",
]

# [project.scripts]
# mvp = "mvp.__main__:main"

[tool.maturin]
bindings = "bin"
# manifest-path = "Cargo.toml"
module-name = "mvp"

[[tool.uv.index]]
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true