aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: d6ff9f39f58f130b498922a13a494ca58086d0b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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='GPL-3.0+',
    keywords='mailing-list cli manager',
    url='http://git.devys.org/climl',


    install_requires=['imapclient'],

    packages = ['climl', 'confparser'],
    entry_points={
        'console_scripts': [ 'climl = climl:main' ],
    },
)