2013-10-31 13:25:39 +01:00
|
|
|
#!/usr/bin/env python2
|
2012-03-11 11:59:19 +00:00
|
|
|
|
2013-10-24 15:29:40 -04:00
|
|
|
from setuptools import setup
|
2014-04-02 15:15:27 -04:00
|
|
|
import os
|
|
|
|
import subprocess
|
2014-04-02 14:41:20 -04:00
|
|
|
import sys
|
2012-03-11 11:59:19 +00:00
|
|
|
|
2014-04-02 15:15:27 -04:00
|
|
|
if not os.path.exists('fdroidserver/getsig/getsig.class'):
|
|
|
|
subprocess.check_output('cd fdroidserver/getsig && javac getsig.java',
|
|
|
|
shell=True)
|
|
|
|
|
2014-04-02 14:38:57 -04:00
|
|
|
setup(name='fdroidserver',
|
2014-08-02 13:44:48 +02:00
|
|
|
version='0.2.1',
|
2012-03-11 11:59:19 +00:00
|
|
|
description='F-Droid Server Tools',
|
2013-10-24 15:29:40 -04:00
|
|
|
long_description=open('README').read(),
|
2012-03-11 11:59:19 +00: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 11:59:19 +00:00
|
|
|
packages=['fdroidserver'],
|
2014-01-15 23:02:02 +01:00
|
|
|
scripts=['fdroid', 'fd-commit'],
|
2013-11-01 15:09:16 -04:00
|
|
|
data_files=[
|
2014-04-02 14:41:20 -04:00
|
|
|
(sys.prefix + '/share/doc/fdroidserver/examples',
|
2014-05-06 13:56:44 -04:00
|
|
|
['buildserver/config.buildserver.py',
|
2014-03-31 21:29:51 -04:00
|
|
|
'examples/config.py',
|
|
|
|
'examples/makebs.config.py',
|
2014-04-04 00:05:22 -04:00
|
|
|
'examples/opensc-fdroid.cfg',
|
2014-04-01 16:57:49 -04:00
|
|
|
'examples/fdroid-icon.png']),
|
2014-04-02 15:15:27 -04:00
|
|
|
('fdroidserver/getsig', ['fdroidserver/getsig/getsig.class'])
|
2013-11-01 15:09:16 -04:00
|
|
|
],
|
2013-10-24 15:29:40 -04:00
|
|
|
install_requires=[
|
2014-04-02 18:12:40 -04:00
|
|
|
'mwclient',
|
|
|
|
'paramiko',
|
2014-07-17 12:31:57 -04:00
|
|
|
'Pillow',
|
2014-04-02 18:12:40 -04:00
|
|
|
'python-magic',
|
2014-04-22 23:11:58 -04:00
|
|
|
'apache-libcloud >= 0.14.1',
|
2013-10-24 15:29:40 -04:00
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Topic :: Utilities',
|
|
|
|
],
|
|
|
|
)
|