chiark / gitweb /
downcase setup.py name to match the name in the repo, Debian package, etc.
[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          [ 'buildserver/config.buildserver.py',
17            'examples/config.py',
18            'examples/makebs.config.py',
19            'examples/fdroid-icon.png']),
20         ],
21       install_requires=[
22         'python-magic',
23         'PIL',
24         ],
25       classifiers=[
26         'Development Status :: 3 - Alpha',
27         'Intended Audience :: Developers',
28         'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
29         'Operating System :: POSIX',
30         'Topic :: Utilities',
31         ],
32       )