diff options
| author | VG <vg@devys.org> | 2016-05-14 01:48:40 +0200 | 
|---|---|---|
| committer | VG <vg@devys.org> | 2016-05-14 01:48:40 +0200 | 
| commit | 3226bc9c56acc3c4e218351f30794862b142e2b2 (patch) | |
| tree | c2b8d939642ca4b258d37737f2b6b9547f5bad95 | |
| parent | 22bd4afed3a517cbff2578f924d55c6ef6bd353a (diff) | |
| download | climl-3226bc9c56acc3c4e218351f30794862b142e2b2.tar.gz climl-3226bc9c56acc3c4e218351f30794862b142e2b2.tar.bz2 climl-3226bc9c56acc3c4e218351f30794862b142e2b2.zip | |
Add missing files for tox to run
| -rw-r--r-- | setup.py | 18 | ||||
| -rw-r--r-- | tox.ini | 2 | 
2 files changed, 19 insertions, 1 deletions
| diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f4f11cc --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +import setuptools + +setuptools.setup( +    name='climl', +    version='0.1.0', + +    # information about project +    description='Climl is a Cute Little and Innocent Mailing List manager', +    #long_description=open('readme.rst').read(), +    author='VG', +    author_email='vg@devys.org', +    license='GPLv3', +    keywords='mailing-list cli manager', +    url='http://git.devys.org/climl', + + +    install_requires=['imapclient'], +) @@ -4,7 +4,7 @@  # and then run "tox" from this directory.  [tox] -envlist = py34, py35, pypy +envlist = py35  [testenv]  commands = py.test | 
