aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: db2ea46f143110595b64cf3dba0e3bcca2d14edb (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
[project]
name = "ipdm"
version = "0.2.0-alpha.14"
description = "Infini 包管理器"
authors = [
    { name = "苏向夜", email = "fu050409@163.com" },
    { name = "简律纯", email = "leader@hydroroll.team" },
]
dependencies = [
    "typer>=0.9.0",
    "requests>=2.31.0",
    "rich>=13.7.0",
    "infini>=2.1.8",
    "tomlkit>=0.12.4",
    "virtualenv>=20.25.1",
    "gitpython>=3.1.42",
]
requires-python = ">=3.8"
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]
dev = [
    "pytest>=8.0.2",
]