Mel Seto
commited on
Commit
·
fc25b34
1
Parent(s):
977dd1c
adding uv install
Browse files- .python-version +1 -0
- pyproject.toml +15 -0
.python-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
3.12
|
pyproject.toml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "chinese-idioms"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = "Add your description here"
|
| 5 |
+
readme = "README.md"
|
| 6 |
+
requires-python = ">=3.12"
|
| 7 |
+
dependencies = [
|
| 8 |
+
"gradio>=4.44.1",
|
| 9 |
+
]
|
| 10 |
+
|
| 11 |
+
[dependency-groups]
|
| 12 |
+
dev = [
|
| 13 |
+
"python-dotenv>=1.1.1",
|
| 14 |
+
"watchfiles>=1.1.0",
|
| 15 |
+
]
|