1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00
fdroidserver/setup.py

26 lines
705 B
Python
Raw Normal View History

#!/usr/bin/python
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',
author_email='admin@f-droid.org',
url='http://f-droid.org',
packages=['fdroidserver'],
scripts=['fdroid'],
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',
],
)