1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00
fdroidserver/setup.py

33 lines
959 B
Python
Raw Normal View History

2013-10-31 13:25:39 +01:00
#!/usr/bin/env python2
from setuptools import setup
setup(name='FDroidServer',
version='0.1',
description='F-Droid Server Tools',
long_description=open('README').read(),
author='The F-Droid Project',
2014-01-08 18:17:00 +01:00
author_email='team@f-droid.org',
url='https://f-droid.org',
packages=['fdroidserver'],
2014-01-15 23:02:02 +01:00
scripts=['fdroid', 'fd-commit'],
data_files=[
('share/doc/fdroidserver/examples',
[ 'buildserver/config.buildserver.py',
'examples/config.py',
'examples/makebs.config.py',
2014-04-01 22:57:49 +02:00
'examples/fdroid-icon.png']),
],
install_requires=[
'python-magic',
'PIL',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Topic :: Utilities',
],
)