mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
install biplist and pycountry by default on macOS
* biplist is only used for Apple iOS IPA files. * pycountry is only used for linting countryCodes in mirror configs. Both of these are included via the Debian packaging, where those packages and updates are more vetted. Homebrew for macOS makes it very difficult to include optional dependencies, so this includes the optional dependencies via distutils' method.
This commit is contained in:
parent
cd29dd84d2
commit
1b0fabe8f5
2 changed files with 3 additions and 3 deletions
3
setup.py
3
setup.py
|
@ -93,6 +93,8 @@ setup(
|
|||
'platformdirs',
|
||||
'androguard >= 3.3.5',
|
||||
'asn1crypto',
|
||||
# TODO use biplist on all platforms once IPA support is stable
|
||||
'biplist ; sys_platform=="darwin"',
|
||||
'clint',
|
||||
'defusedxml',
|
||||
'GitPython',
|
||||
|
@ -101,6 +103,7 @@ setup(
|
|||
'Pillow',
|
||||
'apache-libcloud >= 0.14.1',
|
||||
'puremagic',
|
||||
'pycountry ; sys_platform=="darwin"',
|
||||
'python-vagrant',
|
||||
'PyYAML',
|
||||
'qrcode',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue