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
|
|
|
|
2015-08-03 22:03:25 +02:00
|
|
|
# workaround issue on OSX, where sys.prefix is not an installable location
|
2015-07-31 14:47:48 +02:00
|
|
|
if sys.platform == 'darwin' and sys.prefix.startswith('/System'):
|
2015-08-03 22:03:25 +02:00
|
|
|
data_prefix = '.'
|
2015-07-31 14:47:48 +02:00
|
|
|
else:
|
|
|
|
data_prefix = sys.prefix
|
|
|
|
|
2014-04-02 20:38:57 +02:00
|
|
|
setup(name='fdroidserver',
|
2015-08-05 08:00:11 +02:00
|
|
|
version='0.4.0',
|
2012-03-11 12:59:19 +01:00
|
|
|
description='F-Droid Server Tools',
|
2015-08-04 21:02:06 +02:00
|
|
|
long_description=open('README.md').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=[
|
2015-07-31 14:47:48 +02:00
|
|
|
(data_prefix + '/share/doc/fdroidserver/examples',
|
2014-08-16 11:51:23 +02:00
|
|
|
['buildserver/config.buildserver.py',
|
|
|
|
'examples/config.py',
|
|
|
|
'examples/makebs.config.py',
|
|
|
|
'examples/opensc-fdroid.cfg',
|
|
|
|
'examples/fdroid-icon.png']),
|
2014-12-31 16:42:26 +01:00
|
|
|
],
|
2015-07-31 15:50:20 +02:00
|
|
|
install_requires=[ # should include 'python-magic' but its not strictly required
|
2014-08-16 11:51:23 +02:00
|
|
|
'mwclient',
|
|
|
|
'paramiko',
|
|
|
|
'Pillow',
|
|
|
|
'apache-libcloud >= 0.14.1',
|
2014-08-30 04:53:55 +02:00
|
|
|
'pyasn1',
|
|
|
|
'pyasn1-modules',
|
2015-07-24 06:42:21 +02:00
|
|
|
'requests',
|
2014-12-31 16:42:26 +01: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',
|
2014-12-31 16:42:26 +01:00
|
|
|
],
|
2013-10-24 21:29:40 +02:00
|
|
|
)
|