mirror of
https://github.com/9001/copyparty.git
synced 2025-08-16 08:32:13 -06:00
pypi: add extras-group "all"; closes #398
This commit is contained in:
parent
848315c009
commit
6eaf8af15a
|
@ -45,6 +45,14 @@ classifiers = [
|
||||||
"Demo Server" = "https://a.ocv.me/pub/demo/"
|
"Demo Server" = "https://a.ocv.me/pub/demo/"
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
|
all = [
|
||||||
|
"argon2-cffi",
|
||||||
|
"partftpy>=0.4.0",
|
||||||
|
"Pillow",
|
||||||
|
"pyftpdlib",
|
||||||
|
"pyopenssl",
|
||||||
|
"pyzmq",
|
||||||
|
]
|
||||||
thumbnails = ["Pillow"]
|
thumbnails = ["Pillow"]
|
||||||
thumbnails2 = ["pyvips"]
|
thumbnails2 = ["pyvips"]
|
||||||
audiotags = ["mutagen"]
|
audiotags = ["mutagen"]
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -136,6 +136,7 @@ args = {
|
||||||
],
|
],
|
||||||
"install_requires": ["jinja2"],
|
"install_requires": ["jinja2"],
|
||||||
"extras_require": {
|
"extras_require": {
|
||||||
|
"all": ["argon2-cffi", "partftpy>=0.4.0", "Pillow", "pyftpdlib", "pyopenssl", "pyzmq"],
|
||||||
"thumbnails": ["Pillow"],
|
"thumbnails": ["Pillow"],
|
||||||
"thumbnails2": ["pyvips"],
|
"thumbnails2": ["pyvips"],
|
||||||
"audiotags": ["mutagen"],
|
"audiotags": ["mutagen"],
|
||||||
|
|
Loading…
Reference in a new issue