refactor: update pyproject.toml & .gitignore
Browse files- .gitignore +8 -0
- pyproject.toml +2 -0
.gitignore
CHANGED
|
@@ -32,3 +32,11 @@ poetry.lock
|
|
| 32 |
|
| 33 |
# Mac files
|
| 34 |
.DS_Store
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
# Mac files
|
| 34 |
.DS_Store
|
| 35 |
+
|
| 36 |
+
#gradio cache
|
| 37 |
+
.cache/
|
| 38 |
+
.gradio/
|
| 39 |
+
|
| 40 |
+
#notebook cache
|
| 41 |
+
.ipynb_checkpoints/
|
| 42 |
+
notebooks/
|
pyproject.toml
CHANGED
|
@@ -22,6 +22,8 @@ pandas = "^2.0.3"
|
|
| 22 |
datasets = "^2.14.4"
|
| 23 |
typing-extensions = "^4.8.0"
|
| 24 |
ipywidgets = "^8.1.1"
|
|
|
|
|
|
|
| 25 |
|
| 26 |
[tool.poetry.group.dev.dependencies]
|
| 27 |
pytest = "^7.0.0"
|
|
|
|
| 22 |
datasets = "^2.14.4"
|
| 23 |
typing-extensions = "^4.8.0"
|
| 24 |
ipywidgets = "^8.1.1"
|
| 25 |
+
gradio = "^4.19.2"
|
| 26 |
+
pyaudio = "^0.2.14"
|
| 27 |
|
| 28 |
[tool.poetry.group.dev.dependencies]
|
| 29 |
pytest = "^7.0.0"
|