diff options
| -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 | 
