-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.04 KB
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
[project]
name = "cropedgeai"
version = "1.0.0"
description = "Computer Vision pipeline for Precision Agriculture focused on crop and weed edge detection."
readme = "README.md"
authors = [
{ name = "Manuel Jesús Escamilla", email = "manueljesus@mjescamilla.com" }
]
license = { file = "LICENSE" }
requires-python = ">=3.11, <3.13"
dependencies = [
"adjusttext>=1.3.0",
"matplotlib>=3.10.3",
"ncnn>=1.0.20250503",
"opencv-python>=4.11.0.86",
"optuna>=4.4.0",
"pandas>=2.3.0",
"pyyaml>=6.0.2",
"scikit-learn>=1.7.0",
"seaborn>=0.13.2",
"tabulate>=0.9.0",
"torch>=2.8.0",
"torchvision>=0.23.0",
"tqdm>=4.67.1",
"ultralytics>=8.3.170",
]
[build-system]
requires = ["uv_build>=0.8.2,<0.9.0"]
build-backend = "uv_build"
[project.scripts]
cropedgeai = "cropedgeai.main:main"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ipywidgets>=8.1.7",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
]
[tool.pytest.ini_options]
testpaths = [
"test"
]
[tool.coverage.report]
omit= [
"test/*",
]