Spaces:
Runtime error
Runtime error
Update setup.py
Browse files
setup.py
CHANGED
|
@@ -1,2 +1,14 @@
|
|
| 1 |
-
import
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup
|
| 2 |
+
|
| 3 |
+
def parse_requirements(filename):
|
| 4 |
+
lines = (line.strip() for line in open(filename))
|
| 5 |
+
return [line for line in lines if line and not line.startswith('#')]
|
| 6 |
+
|
| 7 |
+
setup(name='VideoGPT', version='1.0',
|
| 8 |
+
description='Real ERSGAN Mod',
|
| 9 |
+
url='https://huggingface.co/spaces/Omnibus/real_esrgan_mod',
|
| 10 |
+
author='Omnibus',
|
| 11 |
+
author_email='[email protected]',
|
| 12 |
+
license='No',
|
| 13 |
+
install_requires=parse_requirements('requirements.txt'),
|
| 14 |
+
zip_safe=True)
|