chiark / gitweb /
Merge branch 'some-compatibility-fixes' of https://gitlab.com/eighthave/fdroidserver
[fdroidserver.git] / setup.py
index 669cfaee60174696d59d2485f29cb4ab9aa7810d..bfd5d106a42960e539206f038ff2708c2690a8fd 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import setup
 import sys
 
 setup(name='fdroidserver',
-      version='0.2.1',
+      version='0.3.0',
       description='F-Droid Server Tools',
       long_description=open('README').read(),
       author='The F-Droid Project',
@@ -19,7 +19,7 @@ setup(name='fdroidserver',
                   'examples/makebs.config.py',
                   'examples/opensc-fdroid.cfg',
                   'examples/fdroid-icon.png']),
-          ],
+      ],
       install_requires=[
           'mwclient',
           'paramiko',
@@ -28,12 +28,13 @@ setup(name='fdroidserver',
           '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',
-          ],
+      ],
       )