summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: bacfbf14043802c01945de35998dd8940742b7de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distribute_setup import use_setuptools
use_setuptools()

from setuptools import setup, find_packages

setup(
    name="KittyStore",
    version="0.1",
    description="A storage engine for GNU Mailman v3 archives",
    long_description=open('README.rst').read(),
    url="https://fedorahosted.org/hyperkitty/",
    packages=find_packages(exclude=["*.test", "test", "*.test.*"]),
    include_package_data=True,
    install_requires=[
        'mailman',
        'zope.interface',
        'SQLAlchemy==0.7.8',
        'storm',
        'python-dateutil < 2.0' # 2.0+ is for Python 3
        'mock',
        ],
     entry_points={
        'console_scripts': [
            'kittystore-import = kittystore.import:main',
            ],
        },
    )