Spaces:
Sleeping
Sleeping
feat: adding requiremnts.py
Browse files- pkg.py +14 -0
- requirements.py +3 -0
pkg.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# List of required packages for the PDF Color Inverter app
|
| 2 |
+
requirements = [
|
| 3 |
+
"gradio",
|
| 4 |
+
"PyMuPDF",
|
| 5 |
+
"numpy"
|
| 6 |
+
]
|
| 7 |
+
|
| 8 |
+
def print_requirements():
|
| 9 |
+
for pkg in requirements:
|
| 10 |
+
print(pkg)
|
| 11 |
+
|
| 12 |
+
if __name__ == "__main__":
|
| 13 |
+
print("Required packages:")
|
| 14 |
+
print_requirements()
|
requirements.py
CHANGED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio
|
| 2 |
+
PyMuPDF
|
| 3 |
+
numpy
|