aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2015-01-05 13:07:50 +0100
committerMatěj Cepl <mcepl@cepl.eu>2015-01-05 13:11:46 +0100
commitf638202fcf8808f8eec2387155982711f92c6d52 (patch)
tree85e15242c87996c5b21c9fec84bfc38c40a7e239
parent8d129bc3b7780a6747583dd3d32d425b4e1ef562 (diff)
downloadpyg-f638202fcf8808f8eec2387155982711f92c6d52.tar.gz
Add missing wlp and wlp_parser modules to setup.py to be installed.0.9.14
Fixes #18
-rw-r--r--mail2news.py2
-rw-r--r--setup.py3
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'],