From f638202fcf8808f8eec2387155982711f92c6d52 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Mon, 5 Jan 2015 13:07:50 +0100 Subject: Add missing wlp and wlp_parser modules to setup.py to be installed. Fixes #18 --- mail2news.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/mail2news.py b/mail2news.py index 3737d68..d6d8658 100644 --- a/mail2news.py +++ b/mail2news.py @@ -29,7 +29,7 @@ import sys # This is the single source of Truth # Yes, it is awkward to have it assymetrically here # and not in news2mail as well. -VERSION = '0.9.13' +VERSION = '0.9.14' DESC = "The Python Gateway Script: news2mail mail2news gateway" diff --git a/setup.py b/setup.py index d370040..6184381 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,8 @@ setup(name='pygn', description=DESC, long_description=read('README'), url='https://gitlab.com/mcepl/pyg', - py_modules=['mail2news', 'news2mail', 'setup', 'whitelist'], + py_modules=['mail2news', 'news2mail', 'setup', + 'whitelist', 'wlp', 'wlp_parser'], test_suite="test", scripts=['pygm2n', 'pygn2m'], requires=['rply'], -- cgit