Files
deb-python-kafka/setup.py
2012-10-02 12:09:19 -04:00

13 lines
356 B
Python

from distutils.core import setup
setup(
name="Kafka Python Client",
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(),
)