mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +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:
|
||||
# * biplist is only used for parsing Apple .ipa files
|
||||
# * pycountry is only for linting config/mirrors.yml
|
||||
# * python-magic is preferred when libmagic is available, but its not in pypi.org
|
||||
extras_require={
|
||||
'optional': ['biplist', 'pycountry'],
|
||||
'optional': [
|
||||
'biplist',
|
||||
'pycountry',
|
||||
'python-magic',
|
||||
],
|
||||
'test': ['pyjks', 'html5print'],
|
||||
'docs': [
|
||||
'sphinx',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue