forked from mergeos-bounties/PlantGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1007 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 1007 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plantguide"
version = "0.2.17"
description = "PlantGuide: photo/tag plant ID + per-species care cards (offline demo vision)"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "MergeOS / ThanhTrucSolutions" }]
keywords = ["plants", "botany", "identification", "care", "gardening", "vision", "photo"]
dependencies = [
"typer>=0.12",
"rich>=13.7",
"pydantic>=2.6",
"numpy>=1.26",
"Pillow>=10.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.4",
]
torch = [
"torch>=2.2",
]
vision = [
"Pillow>=10.0",
"opencv-python-headless>=4.9",
]
api = [
"fastapi>=0.110",
"uvicorn>=0.27",
]
[project.scripts]
plantguide = "plantguide.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 100
target-version = "py311"