chiark / gitweb /
Bump to 0.5.0
[fdroidserver.git] / setup.py
index 8e165d7acf92df8e37b250d3fb6f41f1cde8b884..7834799b036ff8ec3f77c0b6bedd6439010ae570 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -10,13 +10,13 @@ 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.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=[
           (data_prefix + '/share/doc/fdroidserver/examples',
@@ -26,19 +26,20 @@ setup(name='fdroidserver',
                   'examples/opensc-fdroid.cfg',
                   'examples/fdroid-icon.png']),
       ],
-      install_requires=[  # should include 'python-magic' but its not strictly required
+      install_requires=[
           'mwclient',
           'paramiko',
           'Pillow',
           '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',
       ],