-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
55 lines (45 loc) · 1 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
[project]
name = "pdm-mina"
version = "0.3.2"
requires-python = ">=3.9"
readme = "README.md"
authors = [
{name = "GreyElaina", email = "[email protected]"},
]
license = {text = "MIT"}
[tool.pdm.dev-dependencies]
dev = [
"black>=22.3.0",
"isort>=5.10.1",
"devtools>=0.8.0",
"pdm>=2.10.0",
"pdm-backend>=2.1.0",
]
[tool.pdm.build]
includes = [
"src/mina"
]
custom-hook = "src/mina_backend/hooks.py"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.entry-points.pdm]
mina = "mina.plugin:ensure_pdm"
[tool.mina]
enabled = true
override-global = false # default value
[tool.mina.packages."cli-pdm"]
[tool.mina.packages.backend]
includes = [
"src/mina_backend"
]
[tool.mina.packages.backend.project]
name = "mina-build"
version = "0.6.1"
description = "build backend for Mina Package Structure"
dependencies = [
"pdm-backend"
]
readme = "README.build.md"
[tool.mina.packages.backend.project.entry-points."pdm.build.hook"]
mina = "mina_backend.hooks"