Updated setup.py for kafkatest

This commit is contained in:
Geoff Anderson 2015-06-12 15:20:25 -07:00
parent c60125cf4b
commit 7f7c3e0e68
1 changed files with 4 additions and 3 deletions

View File

@ -1,10 +1,11 @@
from setuptools import find_packages, setup from setuptools import find_packages, setup
setup(name="kafkatest", setup(name="kafkatest",
version="0.1", version="0.8.3-SNAPSHOT",
description="System tests for Apache Kafka", description="Apache Kafka System Tests",
author="Ewen Cheslack-Postava <ewen@confluent.io>, Geoff Anderson <geoff@confluent.io>", author="Apache Kafka",
platforms=["any"], platforms=["any"],
license="apache2.0", license="apache2.0",
packages=find_packages(), packages=find_packages(),
requires=["ducktape(>=0.2.0)"]
) )