XThomasBU
commited on
Commit
·
6811519
1
Parent(s):
7712b52
format change
Browse files
setup.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
from setuptools import setup, find_packages
|
| 2 |
|
| 3 |
# Read the contents of requirements.txt
|
| 4 |
-
with open(
|
| 5 |
requirements = f.read().splitlines()
|
| 6 |
|
| 7 |
setup(
|
|
@@ -11,4 +11,4 @@ setup(
|
|
| 11 |
python_requires=">=3.7",
|
| 12 |
install_requires=requirements,
|
| 13 |
description="A Deep Learning for Data Science Tutor application",
|
| 14 |
-
)
|
|
|
|
| 1 |
from setuptools import setup, find_packages
|
| 2 |
|
| 3 |
# Read the contents of requirements.txt
|
| 4 |
+
with open("requirements.txt") as f:
|
| 5 |
requirements = f.read().splitlines()
|
| 6 |
|
| 7 |
setup(
|
|
|
|
| 11 |
python_requires=">=3.7",
|
| 12 |
install_requires=requirements,
|
| 13 |
description="A Deep Learning for Data Science Tutor application",
|
| 14 |
+
)
|