mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-05 06:50:10 +01:00
6e2d0a9e1e
Special thanks to deki for helping out with the certificate encodings: https://gitlab.com/snippets/1842 fixes #5 https://gitlab.com/fdroid/fdroidserver/issues/5
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
#!/usr/bin/env python2
|
|
|
|
from setuptools import setup
|
|
import sys
|
|
|
|
setup(name='fdroidserver',
|
|
version='0.2.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=[
|
|
(sys.prefix + '/share/doc/fdroidserver/examples',
|
|
['buildserver/config.buildserver.py',
|
|
'examples/config.py',
|
|
'examples/makebs.config.py',
|
|
'examples/opensc-fdroid.cfg',
|
|
'examples/fdroid-icon.png']),
|
|
],
|
|
install_requires=[
|
|
'mwclient',
|
|
'paramiko',
|
|
'Pillow',
|
|
'python-magic',
|
|
'apache-libcloud >= 0.14.1',
|
|
'pyasn1',
|
|
'pyasn1-modules',
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
'Operating System :: POSIX',
|
|
'Topic :: Utilities',
|
|
],
|
|
)
|