aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: 5fdc45716cca9b37bd21ebfd1daffcae1f051471 (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
[project]
name = "ipm"
version = "0.1.0-rc.2"
description = "Infini 包管理器"
authors = [
    { name = "苏向夜", email = "fu050409@163.com" },
    { name = "简律纯", email = "leader@hydroroll.team" },
]
dependencies = [
    "typer>=0.9.0",
    "multilogging>=1.0.2",
    "toml>=0.10.2",
    "requests>=2.31.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }

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

[project.scripts]
ipm = "ipm.__main__:main"

[tool.pdm]
distribution = true

[tool.pdm.dev-dependencies]
test = [
    "pytest>=7.4.4",
]