Skip to content
Snippets Groups Projects
Commit 0c3e89d1 authored by Vermaat's avatar Vermaat
Browse files

Further changes to setup.py.

parent 835de4de
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ We use python-daemon [1] for daemonizing the job processing. This file
should be run with the mutalyzer directory as working directory.
@todo: Check if PID dir is writable.
@todo: Get rid of ugly exception logging.
[1] http://pypi.python.org/pypi/python-daemon/
"""
......
......@@ -13,10 +13,18 @@ setup(
author=distmeta.__author__,
author_email=distmeta.__contact__,
url=distmeta.__homepage__,
license='Not distributable',
platform=['any'],
packages=find_packages(exclude=['doc', 'extras', 'tests']),
include_package_data=True,
scripts=['bin/batch_daemon'],
scripts=['bin/mutalyzer-batchd'],
zip_safe=False
#data_files=[('/etc/init.d', ['examples/init.d/mutalyzer-batchd'])]
# Todo: templates, doc, bin
)
# Things not handled by this setup.py:
# - Copy extras/config.example to /etc/mutalyzer/config
# - Database setup
# - Chown /var/log/mutalyzer.log
# - Copy extras/init.d/mutalyzer-batchd to /etc/init.d/mutalyzer-batchd
# - Copy doc to /usr/share/doc
# Perhaps as a postinstall script?
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment