2013-10-31 13:25:39 +01:00
|
|
|
#!/usr/bin/env python2
|
2012-03-11 12:59:19 +01:00
|
|
|
|
2013-10-24 21:29:40 +02:00
|
|
|
from setuptools import setup
|
2014-04-02 20:41:20 +02:00
|
|
|
import sys
|
2012-03-11 12:59:19 +01:00
|
|
|
|
2014-04-02 20:38:57 +02:00
|
|
|
setup(name='fdroidserver',
|
2014-08-02 13:44:48 +02:00
|
|
|
version='0.2.1',
|
2012-03-11 12:59:19 +01:00
|
|
|
description='F-Droid Server Tools',
|
2013-10-24 21:29:40 +02:00
|
|
|
long_description=open('README').read(),
|
2012-03-11 12:59:19 +01:00
|
|
|
author='The F-Droid Project',
|
2014-01-08 18:17:00 +01:00
|
|
|
author_email='team@f-droid.org',
|
|
|
|
url='https://f-droid.org',
|
2012-03-11 12:59:19 +01:00
|
|
|
packages=['fdroidserver'],
|
2014-01-15 23:02:02 +01:00
|
|
|
scripts=['fdroid', 'fd-commit'],
|
2013-11-01 20:09:16 +01:00
|
|
|
data_files=[
|
2014-08-16 11:51:23 +02:00
|
|
|
(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']),
|
|
|
|
],
|
2013-10-24 21:29:40 +02:00
|
|
|
install_requires=[
|
2014-08-16 11:51:23 +02:00
|
|
|
'mwclient',
|
|
|
|
'paramiko',
|
|
|
|
'Pillow',
|
|
|
|
'python-magic',
|
|
|
|
'apache-libcloud >= 0.14.1',
|
2014-08-30 04:53:55 +02:00
|
|
|
'pyasn1',
|
|
|
|
'pyasn1-modules',
|
2014-08-16 11:51:23 +02:00
|
|
|
],
|
2013-10-24 21:29:40 +02:00
|
|
|
classifiers=[
|
2014-08-16 11:51:23 +02:00
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
],
|
2013-10-24 21:29:40 +02:00
|
|
|
)
|