-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (40 loc) · 899 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (40 loc) · 899 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
[project]
name = "model-resolver"
version = "1.15.2"
description = ""
readme = "README.md"
license = "MIT"
authors = [
{ name = "edayot", email = "pro.e.dayot@gmail.com" },
]
requires-python = ">=3.14,<4.0"
dependencies = [
"beet>=0.113.0b10",
"pillow>10.3.0",
"pyopengl>=3.1.9,<4.0.0",
"click>=8.1.7",
]
[dependency-groups]
dev = [
"pytest-insta>=0.3.0,<1.0.0",
"python-semantic-release>=8.7.0,<9.0.0",
"autoflake>=2.3.1,<3.0.0",
"black>=24.4.2,<25.0.0",
]
[build-system]
requires = ["hatchling>=1.25.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"/tests/snapshots",
]
[tool.pyright]
typeCheckingMode = "basic"
[tool.semantic_release]
major_on_zero = false
version_toml = ["pyproject.toml:project.version"]
tag_format = "{version}"
build_command = "uv build"
remove_dist = false
[tool.semantic_release.publish]
upload_to_vcs_release = true