chiark / gitweb /
Merge branch 'some-bug-fixes' into 'master'
[fdroidserver.git] / setup.py
1 #!/usr/bin/env python2
2
3 from setuptools import setup
4 import sys
5
6 setup(name='fdroidserver',
7       version='0.2.1',
8       description='F-Droid Server Tools',
9       long_description=open('README').read(),
10       author='The F-Droid Project',
11       author_email='team@f-droid.org',
12       url='https://f-droid.org',
13       packages=['fdroidserver'],
14       scripts=['fdroid', 'fd-commit'],
15       data_files=[
16           (sys.prefix + '/share/doc/fdroidserver/examples',
17               ['buildserver/config.buildserver.py',
18                   'examples/config.py',
19                   'examples/makebs.config.py',
20                   'examples/opensc-fdroid.cfg',
21                   'examples/fdroid-icon.png']),
22           ],
23       install_requires=[
24           'mwclient',
25           'paramiko',
26           'Pillow',
27           'python-magic',
28           'apache-libcloud >= 0.14.1',
29           'pyasn1',
30           'pyasn1-modules',
31           ],
32       classifiers=[
33           'Development Status :: 3 - Alpha',
34           'Intended Audience :: Developers',
35           'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
36           'Operating System :: POSIX',
37           'Topic :: Utilities',
38           ],
39       )