mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-05 06:50:10 +01:00
a31f4571c2
This also makes the file layout in git basically the same as the installed file layout, using an examples/ dir. I'm not sure if config.buildserver.py is an example conf file, or a conf file that is actually in use, so I did not move it.
33 lines
950 B
Python
33 lines
950 B
Python
#!/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',
|
|
author_email='team@f-droid.org',
|
|
url='https://f-droid.org',
|
|
packages=['fdroidserver'],
|
|
scripts=['fdroid', 'fd-commit'],
|
|
data_files=[
|
|
('share/doc/fdroidserver/examples',
|
|
[ 'buildserver/config.buildserver.py',
|
|
'examples/config.py',
|
|
'examples/makebs.config.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',
|
|
],
|
|
)
|