forked from dpkp/kafka-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add TravisCI config for auto deployment
Tags applied to master will now be automatically deployed on PyPI
- Loading branch information
Showing
4 changed files
with
24 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,12 +32,20 @@ def run(self): | |
author="David Arthur", | ||
author_email="[email protected]", | ||
url="https://github.com/mumrah/kafka-python", | ||
license="Copyright 2012, David Arthur under Apache License, v2.0", | ||
license="Apache License 2.0", | ||
description="Pure Python client for Apache Kafka", | ||
long_description=""" | ||
This module provides low-level protocol support for Apache Kafka as well as | ||
high-level consumer and producer classes. Request batching is supported by the | ||
protocol as well as broker-aware request routing. Gzip and Snappy compression | ||
is also supported for message sets. | ||
""" | ||
""", | ||
keywords="apache kafka", | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Programming Language :: Python", | ||
"Topic :: Software Development :: Libraries :: Python Modules" | ||
] | ||
) |