-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.38 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "pdm-plugin-i"
description = "A PDM plugin that make `pdm i` as alias of `pdm install`"
authors = [
{name = "Waket Zheng", email = "[email protected]"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
dynamic = ["version"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[project.urls]
Repository = "https://github.com/waketzheng/pdm-plugin-i"
Homepage = "https://github.com/waketzheng/pdm-plugin-i"
[project.entry-points.pdm]
pdm-plugin-i = "pdm_plugin_i:plugin"
[tool.pdm]
version = { source = "file", path = "src/pdm_plugin_i/__init__.py" }
distribution = true
[tool.pdm.build]
package-dir = "src"
[tool.pdm.scripts]
test = "pytest tests/"
format = "ruff format ."
style = "ruff check --extend-select=I,B,SIM --fix ."
type_hint = "dmypy run ."
lint = {composite = ["format", "style", "type_hint"]}
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning"
]
[dependency-groups]
dev = ["pytest>=8.3.3", "pdm>=2.20.0", "ruff>=0.7.1", "click>=8.1.7", "mypy>=1.13.0"]