1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-07 01:40:10 +02:00
fdroidserver/setup.py

33 lines
965 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',
2014-01-08 18:17:00 +01:00
[ 'config.buildserver.py',
'sampleconfigs/config.sample.py',
'sampleconfigs/makebs.config.sample.py',
'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',
],
)