chiark / gitweb /
Fix issues spotted by older pyflakes
[fdroidserver.git] / setup.py
index bfd5d106a42960e539206f038ff2708c2690a8fd..7834799b036ff8ec3f77c0b6bedd6439010ae570 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,17 +3,23 @@
 from setuptools import setup
 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:
+    data_prefix = sys.prefix
+
 setup(name='fdroidserver',
-      version='0.3.0',
+      version='0.5.0',
       description='F-Droid Server Tools',
-      long_description=open('README').read(),
+      long_description=open('README.md').read(),
       author='The F-Droid Project',
       author_email='team@f-droid.org',
       url='https://f-droid.org',
-      packages=['fdroidserver'],
+      packages=['fdroidserver', 'fdroidserver.asynchronousfilereader'],
       scripts=['fdroid', 'fd-commit'],
       data_files=[
-          (sys.prefix + '/share/doc/fdroidserver/examples',
+          (data_prefix + '/share/doc/fdroidserver/examples',
               ['buildserver/config.buildserver.py',
                   'examples/config.py',
                   'examples/makebs.config.py',
@@ -24,16 +30,16 @@ setup(name='fdroidserver',
           'mwclient',
           'paramiko',
           'Pillow',
-          'python-magic',
           'apache-libcloud >= 0.14.1',
           'pyasn1',
           'pyasn1-modules',
+          'PyYAML',
           'requests',
       ],
       classifiers=[
           'Development Status :: 3 - Alpha',
           'Intended Audience :: Developers',
-          'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
+          'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)'
           'Operating System :: POSIX',
           'Topic :: Utilities',
       ],