From 396c9e5835e0c25748785b6133174a22a4f25656 Mon Sep 17 00:00:00 2001 From: Marius Gedminas Date: Sun, 25 Sep 2016 12:09:43 +0300 Subject: [PATCH] Install an `irclogserver` script --- CHANGES.rst | 3 +++ buildout.cfg | 1 - setup.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index b105ef4..694af28 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,9 @@ Changelog - irclogsearch can now be deployed via WSGI. Contributed by Albertas Agejevas (https://github.com/mgedmin/irclog2html/pull/9). +- There's a new ``irclogserver`` script that can be used to serve + dynamically-generated IRC logs. It can also be deployed via WSGI. + - Drop support for Python 2.6. diff --git a/buildout.cfg b/buildout.cfg index 3197d1a..0808005 100644 --- a/buildout.cfg +++ b/buildout.cfg @@ -8,7 +8,6 @@ eggs = irclog2html tox detox coverage -entry-points = serve=irclog2html.irclogserver:main [test] diff --git a/setup.py b/setup.py index 54a4c2b..461e43e 100755 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ def read(filename): irclog2html = irclog2html.irclog2html:main logs2html = irclog2html.logs2html:main irclogsearch = irclog2html.irclogsearch:main + irclogserver = irclog2html.irclogserver:main """, zip_safe=False, )