-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathhatch.toml
51 lines (40 loc) · 996 Bytes
/
hatch.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
[version]
path = "src/view/__about__.py"
[build.targets.sdist]
only-include = ["src/", "_view.pyi"]
[build.targets.wheel]
packages = ["src/view"]
[build.targets.wheel.force-include]
"_view.pyi" = "_view.pyi"
[metadata.hooks.custom]
path = "hatch_build.py"
enable-by-default = true
[build.targets.wheel.hooks.scikit-build]
experimental = true
[build.targets.wheel.hooks.scikit-build.cmake]
source-dir = "."
build-type = "Debug"
verbose = true
[build.targets.wheel.hooks.scikit-build.install]
strip = false
[envs.hatch-test]
features = ["full"]
dev-mode = false
dependencies = [
"coverage",
"pytest",
"pytest-memray",
"pytest-asyncio",
]
platforms = ["linux", "macos"]
[envs.test.overrides.platform.windows]
dependencies = [
"coverage",
"pytest",
"pytest-asyncio",
]
[envs.docs]
dependencies = ["mkdocs", "mkdocstrings[python]", "mkdocs-material", "mkdocs-git-revision-date-localized-plugin"]
[envs.docs.scripts]
build = "mkdocs build"
serve = "mkdocs serve"