13 lines
356 B
Python
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(),
|
|
)
|