aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: f4f11ccb54e80404d8bfdca0b1ed1d747817bd0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'],
)