Skip to content

Commit cfe0ab6

Browse files
committed
updated: Setup.py to read from requirements.txt to prevent misconfiguration
1 parent cd64069 commit cfe0ab6

File tree

1 file changed

+1
-18
lines changed

1 file changed

+1
-18
lines changed

setup.py

+1-18
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,7 @@
2727
packages=find_packages(exclude=['conf/lxdui.conf',]) + ['conf', 'logs'],
2828
include_package_data=True,
2929
zip_safe=False,
30-
install_requires=[
31-
'Click==6.7',
32-
'Flask==1.0.2',
33-
'flask-login==0.4.1',
34-
'flask_jwt==0.3.2',
35-
'jsonschema==2.6.0',
36-
'requests==2.20.0',
37-
'netaddr==0.7.19',
38-
'pyopenssl==17.5.0',
39-
'psutil==5.6.6',
40-
'pylxd==2.2.7',
41-
'terminado==0.8.1',
42-
'tornado==5.0.2',
43-
'tornado-xstatic',
44-
'XStatic==1.0.1',
45-
'XStatic-term.js==0.0.7.0',
46-
'pyyaml==3.11'
47-
],
30+
install_requires=open('requirements.txt').read().splitlines(),
4831
entry_points={
4932
'console_scripts': [
5033
'lxdui = app.run:lxdui'

0 commit comments

Comments
 (0)