chiark / gitweb /
Merge branch 'index-parsing' into 'master'
[fdroidserver.git] / setup.py
index 10dfaf0b063e8a718a523d44f2aa3beb0b8c3c65..ab74c94610289424bb016dde4dfb91eb7d2533fe 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,14 @@
 #!/usr/bin/env python3
 
 from setuptools import setup
+import os
 import sys
 
-# workaround issue on OSX, where sys.prefix is not an installable location
-if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
-    data_prefix = '.'
-else:
+# workaround issue on OSX or --user installs, where sys.prefix is not an installable location
+if os.access(sys.prefix, os.W_OK | os.X_OK):
     data_prefix = sys.prefix
+else:
+    data_prefix = '.'
 
 setup(name='fdroidserver',
       version='0.7.0',
@@ -36,7 +37,8 @@ setup(name='fdroidserver',
           'pyasn1',
           'pyasn1-modules',
           'PyYAML',
-          'requests',
+          'requests < 2.11',
+          'docker-py == 1.9.0',
       ],
       classifiers=[
           'Development Status :: 3 - Alpha',