chiark / gitweb /
Remove python-magic pip dep to avoid magic modules confusion
[fdroidserver.git] / setup.py
1 #!/usr/bin/env python2
2
3 from setuptools import setup
4
5 setup(name='FDroidServer',
6       version='0.1',
7       description='F-Droid Server Tools',
8       long_description=open('README').read(),
9       author='The F-Droid Project',
10       author_email='team@f-droid.org',
11       url='https://f-droid.org',
12       packages=['fdroidserver'],
13       scripts=['fdroid', 'fd-commit'],
14       data_files=[
15         ('share/doc/fdroidserver/examples',
16          [ 'config.buildserver.py',
17              'sampleconfigs/config.sample.py',
18              'sampleconfigs/makebs.config.sample.py',
19           'fdroid-icon.png']),
20         ],
21       install_requires=[
22         'PIL',
23         ],
24       classifiers=[
25         'Development Status :: 3 - Alpha',
26         'Intended Audience :: Developers',
27         'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
28         'Operating System :: POSIX',
29         'Topic :: Utilities',
30         ],
31       )