-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
44 lines (38 loc) · 1009 Bytes
/
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
[project]
name = "SaoPauloBrazilChapter_BrazilianSignLanguage"
version = "0.1.0"
description = "Brazilian Sign Language Recognition using Deep Learning"
readme = "README.md"
requires-python = ">=3.11,<3.12"
license = { text = "MIT" }
# Core dependencies
dependencies = [
"numpy",
"pandas",
"requests",
"jupyter",
]
[project.optional-dependencies]
# Dependencies for data collection, cleaning, and preprocessing
data = [
"opencv-python",
"scikit-learn", # for data preprocessing
]
# Dependencies for model development and training
model = [
"tensorflow",
"tensorboard", # for training visualization
"mediapipe", # for landmark detection
]
# Dependencies for web application development
app = [
"fastapi[standard]",
"uvicorn",
"pydantic",
]
# All dependencies combined
all = [
"SaoPauloBrazilChapter_BrazilianSignLanguage[data]",
"SaoPauloBrazilChapter_BrazilianSignLanguage[model]",
"SaoPauloBrazilChapter_BrazilianSignLanguage[app]",
]