Spaces:
Sleeping
Sleeping
Update project settings
Browse files- pyproject.toml +13 -0
- requirements.txt +2 -0
pyproject.toml
CHANGED
|
@@ -5,7 +5,20 @@ description = "Add your description here"
|
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.11"
|
| 7 |
dependencies = [
|
|
|
|
| 8 |
"gradio[mcp]>=5.33.2",
|
| 9 |
"ipython>=9.3.0",
|
|
|
|
| 10 |
"textblob>=0.19.0",
|
| 11 |
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.11"
|
| 7 |
dependencies = [
|
| 8 |
+
"black>=25.1.0",
|
| 9 |
"gradio[mcp]>=5.33.2",
|
| 10 |
"ipython>=9.3.0",
|
| 11 |
+
"isort>=6.0.1",
|
| 12 |
"textblob>=0.19.0",
|
| 13 |
]
|
| 14 |
+
|
| 15 |
+
[tool.isort]
|
| 16 |
+
profile = "black"
|
| 17 |
+
line_length = 88
|
| 18 |
+
py_version = 311
|
| 19 |
+
extend_skip = ["migrations"]
|
| 20 |
+
|
| 21 |
+
[tool.black]
|
| 22 |
+
line_length = 88
|
| 23 |
+
required_version = "25"
|
| 24 |
+
target-version = ['py311', 'py312', 'py313']
|
requirements.txt
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio==5.34.0
|
| 2 |
+
textblob==0.19.0
|