forked from platypush/platypush
Dynamically generate install_requires
through requirements.txt
.
This commit is contained in:
parent
fabcba14d9
commit
4d39791569
2 changed files with 3 additions and 19 deletions
|
@ -8,7 +8,6 @@ docutils
|
|||
flask
|
||||
marshmallow
|
||||
marshmallow_dataclass
|
||||
paho-mqtt
|
||||
psutil
|
||||
python-dateutil
|
||||
python-magic
|
||||
|
|
21
setup.py
21
setup.py
|
@ -104,24 +104,9 @@ setup(
|
|||
"Development Status :: 4 - Beta",
|
||||
],
|
||||
install_requires=[
|
||||
'alembic',
|
||||
'croniter',
|
||||
'docutils',
|
||||
'flask',
|
||||
'marshmallow',
|
||||
'marshmallow_dataclass',
|
||||
'psutil',
|
||||
'python-dateutil',
|
||||
'python-magic',
|
||||
'pyyaml',
|
||||
'redis',
|
||||
'requests',
|
||||
'rsa',
|
||||
'sqlalchemy',
|
||||
'tornado',
|
||||
'websocket-client',
|
||||
'websockets',
|
||||
'zeroconf>=0.27.0',
|
||||
line.split('#')[0].strip()
|
||||
for line in readfile('requirements.txt').splitlines()
|
||||
if line.strip().split('#')[0].strip()
|
||||
],
|
||||
extras_require=parse_manifests(),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue