-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1010 Bytes
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1010 Bytes
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 = ["hatchling", "pyyaml"]
build-backend = "hatchling.build"
[project]
name = "ymery"
version = "0.0.76"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"click>=8.3.0",
"httpx>=0.28.1",
"imgui-bundle>=1.92.4",
"matplotlib>=3.8.0",
"munch>=4.0.0",
"pillow>=11.3.0",
"pyyaml>=6.0.2",
]
[project.optional-dependencies]
audio = [
"soundfile>=0.13.1",
]
dev = [
"pytest>=9.0.2",
"twine>=6.2.0",
]
[project.scripts]
ymery = "ymery.app:main"
[tool.hatch.build.targets.wheel]
packages = ["src/ymery"]
[tool.hatch.build.targets.wheel.hooks.custom]
path = "scripts/hatch_build.py"
[tool.hatch.build.targets.wheel.force-include]
"demo" = "ymery/demo"
"demo-aggregated" = "ymery/demo_aggregated"
[tool.hatch.build.targets.sdist]
include = [
"src/ymery/**/*.py",
"src/ymery/**/*.yaml",
"demo/**/*",
"scripts/hatch_build.py",
]
[dependency-groups]
dev = [
"twine>=6.2.0",
]