diff options
author | VG <vg@devys.org> | 2016-06-12 20:27:02 +0200 |
---|---|---|
committer | VG <vg@devys.org> | 2016-06-12 20:27:02 +0200 |
commit | 98a69a37bc8e33f3b53b59aa4bd2fb34d9ccc619 (patch) | |
tree | 1d5ce161e953e3ec89f41c370e40e7bff6272b48 | |
parent | 05da3e42858499a463769a44125fca900eca71e9 (diff) | |
download | climl-98a69a37bc8e33f3b53b59aa4bd2fb34d9ccc619.tar.gz climl-98a69a37bc8e33f3b53b59aa4bd2fb34d9ccc619.tar.bz2 climl-98a69a37bc8e33f3b53b59aa4bd2fb34d9ccc619.zip |
Change confparser to a package, add it to setup.py
-rw-r--r-- | confparser/__init__.py (renamed from confparser.py) | 0 | ||||
-rw-r--r-- | confparser/confparser_test.py (renamed from confparser_test.py) | 0 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 1 insertions, 1 deletions
diff --git a/confparser.py b/confparser/__init__.py index e43443b..e43443b 100644 --- a/confparser.py +++ b/confparser/__init__.py diff --git a/confparser_test.py b/confparser/confparser_test.py index d5044f2..d5044f2 100644 --- a/confparser_test.py +++ b/confparser/confparser_test.py @@ -16,7 +16,7 @@ setuptools.setup( install_requires=['imapclient'], - packages = ['climl'], + packages = ['climl', 'confparser'], entry_points={ 'console_scripts': [ 'climl = climl:main' ], }, |