Skip to content

Commit 7b85ee1

Browse files
committed
Fixed requirements
1 parent 016e32f commit 7b85ee1

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
99
long_description = f.read()
1010

11+
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
12+
requirements = [line.strip() for line in f.readlines()]
13+
1114

1215
setup(
1316
name='eos',
@@ -30,11 +33,7 @@
3033
keywords='scanner symfony eos enemies-of-symfony',
3134
packages=find_packages(),
3235
python_requires='>=3.5, <4',
33-
install_requires=[
34-
'requests',
35-
'beautifulsoup4',
36-
'lxml',
37-
],
36+
install_requires=requirements,
3837
package_data={
3938
'eos': ['wordlist.txt'],
4039
},

0 commit comments

Comments
 (0)