summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 935d985d4dc128f4c1ef195793e0751f43756a4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import ez_setup
ez_setup.use_setuptools()

from setuptools import setup, find_packages

setup(
    name="HyperKitty",
    version="0.1",
    description="A web interface to access GNU Mailman 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=open('requirements.txt').read(),
    )