mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
extras_require: python-magic is preferred when libmagic is available
This commit is contained in:
parent
46dba20ba3
commit
6d40e8fa27
1 changed files with 6 additions and 1 deletions
7
setup.py
7
setup.py
|
|
@ -116,8 +116,13 @@ setup(
|
||||||
# Some requires are only needed for very limited cases:
|
# Some requires are only needed for very limited cases:
|
||||||
# * biplist is only used for parsing Apple .ipa files
|
# * biplist is only used for parsing Apple .ipa files
|
||||||
# * pycountry is only for linting config/mirrors.yml
|
# * pycountry is only for linting config/mirrors.yml
|
||||||
|
# * python-magic is preferred when libmagic is available, but its not in pypi.org
|
||||||
extras_require={
|
extras_require={
|
||||||
'optional': ['biplist', 'pycountry'],
|
'optional': [
|
||||||
|
'biplist',
|
||||||
|
'pycountry',
|
||||||
|
'python-magic',
|
||||||
|
],
|
||||||
'test': ['pyjks', 'html5print'],
|
'test': ['pyjks', 'html5print'],
|
||||||
'docs': [
|
'docs': [
|
||||||
'sphinx',
|
'sphinx',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue