Skip to content

Commit 1e539b6

Browse files
committed
Load installation requirements from file
1 parent 1e9283a commit 1e539b6

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
with open("README.md", "r") as fh:
44
long_description = fh.read()
5+
6+
with open('requirements.txt') as f:
7+
requirements = f.read().splitlines()
58

69
setuptools.setup(
710
name='forloop_modules',
@@ -18,9 +21,7 @@
1821
"License :: OSI Approved :: MIT License",
1922
"Operating System :: OS Independent",
2023
],
21-
install_requires=[
22-
'flogg'
23-
],
24+
install_requires=requirements,
2425
python_requires='>=3.6',
2526
)
2627

0 commit comments

Comments
 (0)