We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9283a commit 1e539b6Copy full SHA for 1e539b6
1 file changed
setup.py
@@ -2,6 +2,9 @@
2
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
5
+
6
+with open('requirements.txt') as f:
7
+ requirements = f.read().splitlines()
8
9
setuptools.setup(
10
name='forloop_modules',
@@ -18,9 +21,7 @@
18
21
"License :: OSI Approved :: MIT License",
19
22
"Operating System :: OS Independent",
20
23
],
- install_requires=[
- 'flogg'
- ],
24
+ install_requires=requirements,
25
python_requires='>=3.6',
26
)
27
0 commit comments