summaryrefslogtreecommitdiff
path: root/setup.py
blob: 722564d278d1f8e2df08034e2fc54254c9f4e2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from distutils.core import setup

setup(
    name="kafka-python",
    version="0.1-alpha",
    author="David Arthur",
    author_email="mumrah@gmail.com",
    url="https://github.com/mumrah/kafka-python",
    packages=["kafka"],
    license="Copyright 2012, David Arthur under Apache License, v2.0",
    long_description=open("README.md").read(),
)