mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Add setup.py to pep8+pyflakes hook, fix it
This commit is contained in:
parent
eb81375630
commit
880f75110e
2 changed files with 22 additions and 21 deletions
|
@ -6,7 +6,7 @@
|
||||||
# Redirect output to stderr.
|
# Redirect output to stderr.
|
||||||
exec 1>&2
|
exec 1>&2
|
||||||
|
|
||||||
FILES="fdroid makebuildserver examples/*.py buildserver/*.py fdroidserver/*.py"
|
FILES="fdroid makebuildserver setup.py examples/*.py buildserver/*.py fdroidserver/*.py"
|
||||||
|
|
||||||
cmd_exists() {
|
cmd_exists() {
|
||||||
command -v $1 1>/dev/null
|
command -v $1 1>/dev/null
|
||||||
|
|
41
setup.py
41
setup.py
|
@ -19,26 +19,27 @@ setup(name='fdroidserver',
|
||||||
packages=['fdroidserver'],
|
packages=['fdroidserver'],
|
||||||
scripts=['fdroid', 'fd-commit'],
|
scripts=['fdroid', 'fd-commit'],
|
||||||
data_files=[
|
data_files=[
|
||||||
(sys.prefix + '/share/doc/fdroidserver/examples',
|
(sys.prefix + '/share/doc/fdroidserver/examples',
|
||||||
['buildserver/config.buildserver.py',
|
['buildserver/config.buildserver.py',
|
||||||
'examples/config.py',
|
'examples/config.py',
|
||||||
'examples/makebs.config.py',
|
'examples/makebs.config.py',
|
||||||
'examples/opensc-fdroid.cfg',
|
'examples/opensc-fdroid.cfg',
|
||||||
'examples/fdroid-icon.png']),
|
'examples/fdroid-icon.png']),
|
||||||
('fdroidserver/getsig', ['fdroidserver/getsig/getsig.class'])
|
('fdroidserver/getsig',
|
||||||
],
|
['fdroidserver/getsig/getsig.class']),
|
||||||
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'mwclient',
|
'mwclient',
|
||||||
'paramiko',
|
'paramiko',
|
||||||
'Pillow',
|
'Pillow',
|
||||||
'python-magic',
|
'python-magic',
|
||||||
'apache-libcloud >= 0.14.1',
|
'apache-libcloud >= 0.14.1',
|
||||||
],
|
],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha',
|
'Development Status :: 3 - Alpha',
|
||||||
'Intended Audience :: Developers',
|
'Intended Audience :: Developers',
|
||||||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
|
||||||
'Operating System :: POSIX',
|
'Operating System :: POSIX',
|
||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue