reqs
Browse files- README.md +5 -0
- requirements.txt +4 -0
README.md
CHANGED
|
@@ -36,3 +36,8 @@ uv sync
|
|
| 36 |
uv run gradio app.py
|
| 37 |
```
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
uv run gradio app.py
|
| 37 |
```
|
| 38 |
|
| 39 |
+
## Hugging Face Space dependencies
|
| 40 |
+
|
| 41 |
+
HF Gradio Spaces install Python packages from `requirements.txt` during build.
|
| 42 |
+
`uv.lock` is not used by the default Space launcher, so runtime dependencies
|
| 43 |
+
needed by `app.py` (such as `rdkit`) must be listed in `requirements.txt`.
|
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Hugging Face Gradio Spaces install Python deps from requirements.txt.
|
| 2 |
+
# Keep `uv` for local dev; this file ensures runtime deps are present on HF.
|
| 3 |
+
rdkit
|
| 4 |
+
pillow
|