-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.17 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
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "feluda"
version = "0.9.2"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"boto3>=1.35.92",
"dacite>=1.8.1",
"pydub>=0.25.1",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"werkzeug>=3.1.3",
"wget>=3.2",
"toml>=0.10.2",
"pillow>=11.1.0",
"numpy>=2.2.1",
]
[project.optional-dependencies]
dev = [
"python-semantic-release>=9.14.0",
"toml>=0.10.2",
"tomli>=2.2.1",
"tomli-w>=1.1.0",
"ruff>=0.8.3",
"pre-commit>=4.0.1",
"pyproject-pre-commit[ruff]>=0.3.6",
"pytest>=8.3.4",
]
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.semantic_release]
version_variable = [
"pyproject.toml:project.version",
]
[tool.semantic_release.branches.main]
match = "main"
prerelease = false
tag_format = "{name}-{version}"
[tool.uv.workspace]
members = [
"operators/image_vec_rep_resnet",
"operators/vid_vec_rep_clip",
"operators/cluster_embeddings",
"operators/dimension_reduction",
]
[tool.ruff]
exclude = [
"src",
"dist",
".docker",
".pytest_cache",
".ruff_cache",
]
[tool.hatch.build.targets.wheel]
packages = [
"feluda",
]