2016-01-04 16:33:20 +01:00
|
|
|
#!/usr/bin/env python3
|
2012-03-11 12:59:19 +01:00
|
|
|
|
2013-10-24 21:29:40 +02:00
|
|
|
from setuptools import setup
|
2017-04-03 14:55:20 +02:00
|
|
|
import os
|
2014-04-02 20:41:20 +02:00
|
|
|
import sys
|
2012-03-11 12:59:19 +01:00
|
|
|
|
2017-04-03 14:55:20 +02:00
|
|
|
# workaround issue on OSX or --user installs, where sys.prefix is not an installable location
|
|
|
|
if os.access(sys.prefix, os.W_OK | os.X_OK):
|
2015-07-31 14:47:48 +02:00
|
|
|
data_prefix = sys.prefix
|
2017-04-03 14:55:20 +02:00
|
|
|
else:
|
|
|
|
data_prefix = '.'
|
2015-07-31 14:47:48 +02:00
|
|
|
|
2014-04-02 20:38:57 +02:00
|
|
|
setup(name='fdroidserver',
|
2016-09-11 11:52:11 +02:00
|
|
|
version='0.7.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',
|
2015-09-20 20:50:02 +02:00
|
|
|
packages=['fdroidserver', 'fdroidserver.asynchronousfilereader'],
|
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',
|
2016-01-20 20:38:18 +01:00
|
|
|
'examples/makebuildserver.config.py',
|
2014-08-16 11:51:23 +02:00
|
|
|
'examples/opensc-fdroid.cfg',
|
|
|
|
'examples/fdroid-icon.png']),
|
2014-12-31 16:42:26 +01:00
|
|
|
],
|
2015-09-14 07:11:53 +02:00
|
|
|
install_requires=[
|
2016-06-10 11:42:42 +02:00
|
|
|
'clint',
|
2016-03-21 21:00:12 +01:00
|
|
|
'GitPython',
|
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 09:42:47 +02:00
|
|
|
'PyYAML',
|
2016-12-06 13:57:04 +01:00
|
|
|
'requests < 2.11',
|
|
|
|
'docker-py == 1.9.0',
|
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',
|
2016-02-18 11:47:02 +01:00
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
2014-08-16 11:51:23 +02:00
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Topic :: Utilities',
|
2014-12-31 16:42:26 +01:00
|
|
|
],
|
2013-10-24 21:29:40 +02:00
|
|
|
)
|