chiark / gitweb /
Merge branch 'update-install' into 'master'
[fdroidserver.git] / setup.py
index 25d6be85b687825bcaa83a7b97c5314cd642ec8b..12cf73d3be41c228cfc7d871df5ae59756a7b40b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,32 +1,45 @@
 #!/usr/bin/env python2
 
 from setuptools import setup
+import sys
 
-setup(name='FDroidServer',
-      version='0.1',
+# workaround issue with easy_install on OSX, where sys.prefix is not an installable location
+if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
+    data_prefix = '/Library/Python/2.7/site-packages'
+else:
+    data_prefix = sys.prefix
+
+setup(name='fdroidserver',
+      version='0.3.0',
       description='F-Droid Server Tools',
       long_description=open('README').read(),
       author='The F-Droid Project',
       author_email='team@f-droid.org',
       url='https://f-droid.org',
       packages=['fdroidserver'],
-      scripts=['fdroid'],
+      scripts=['fdroid', 'fd-commit'],
       data_files=[
-        ('share/doc/fdroidserver/examples',
-         [ 'config.buildserver.py',
-             'sampleconfigs/config.sample.py',
-             'sampleconfigs/makebs.config.sample.py',
-          'fdroid-icon.png']),
-        ],
-      install_requires=[
-        'python-magic',
-        'PIL',
-        ],
+          (data_prefix + '/share/doc/fdroidserver/examples',
+              ['buildserver/config.buildserver.py',
+                  'examples/config.py',
+                  'examples/makebs.config.py',
+                  'examples/opensc-fdroid.cfg',
+                  'examples/fdroid-icon.png']),
+      ],
+      install_requires=[  # should include 'python-magic' but its not strictly required
+          'mwclient',
+          'paramiko',
+          'Pillow',
+          'apache-libcloud >= 0.14.1',
+          'pyasn1',
+          'pyasn1-modules',
+          'requests',
+      ],
       classifiers=[
-        'Development Status :: 3 - Alpha',
-        'Intended Audience :: Developers',
-        'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
-        'Operating System :: POSIX',
-        'Topic :: Utilities',
-        ],
+          'Development Status :: 3 - Alpha',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
+          'Operating System :: POSIX',
+          'Topic :: Utilities',
+      ],
       )