summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Follow-up: support manual py26 testing; dont advertise 3.3 supportDana Powers2017-06-161-2/+4
|
* Add kafka 0.10.2.1 into integration testing version (#1096)Jianbin Wei2017-06-161-3/+0
| | | | | * Add kafka 0.10.2.1 into integration testing version * Disable tests for python 2.6 and kafka 0.8.0 and 0.8.1.1 * Remove references to python 2.6 support
* Add python3.6 support to pypi metadataDana Powers2017-03-061-0/+1
|
* Release 1.3.01.3.0Dana Powers2016-08-041-1/+1
|
* Vendor six 1.10.0sixDana Powers2016-08-011-1/+0
|
* Use find_packages() for setup.pyDana Powers2016-01-011-9/+2
|
* Update setup.py to show python 3.5 compatibility explicitlyDana Powers2015-12-041-0/+1
|
* Update docs and links wrt maintainer change (mumrah -> dpkp)Dana Powers2015-12-031-3/+3
|
* Set __version__ string in kafka/version.pyDana Powers2015-06-041-3/+3
|
* Added py3 to classifiersJohn Anderson2015-02-101-0/+3
|
* Move to .rst and use it in setup.py for long descriptionJohn Anderson2015-02-101-8/+7
|
* Make sure to include kafka.partitioner in setup package specDana Powers2014-09-251-0/+1
|
* Fixes issue #241, adds kafka.consumer and kafka.producer packagesMark Roberts2014-09-231-2/+6
|
* Merge pull request #227 from wizzat-feature/py3Dana Powers2014-09-071-1/+7
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 3 Support Conflicts: kafka/producer.py test/test_client.py test/test_client_integration.py test/test_codec.py test/test_consumer.py test/test_consumer_integration.py test/test_failover_integration.py test/test_producer.py test/test_producer_integration.py test/test_protocol.py test/test_util.py
| * Make all unit tests pass on py3.3/3.4Bruno ReniƩ2014-09-031-0/+1
| |
| * Use base unittest or unittest2 depending on python versionBruno ReniƩ2014-09-031-1/+6
| |
* | Add trove classifiers for python 2.6, 2.7, and pypy to setup.py for PyPIDana Powers2014-09-041-0/+4
|/
* Merge pull request #204 from mdaniel/better-type-errorsDana Powers2014-08-221-2/+4
|\ | | | | Better type errors
| * Correctly declare unittest2 dependencyMatthew L Daniel2014-08-221-2/+4
| |
* | Add TravisCI config for auto deploymentDavid Arthur2014-08-221-2/+10
|/ | | | Tags applied to master will now be automatically deployed on PyPI
* Set module version in separate VERSION fileDana Powers2014-08-101-1/+2
|
* Update setup.pyYarkee Chou2014-07-191-1/+2
|
* Merge pull request #163 from patricklucas/remove_distribute_dependencyDana Powers2014-05-081-1/+0
|\ | | | | Remove 'distribute' dependency
| * Remove 'distribute' dependencyPatrick Lucas2014-05-021-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This dependency is unnecessary since this project now uses setuptools and it prevents installing this package with --use-wheel, failing with this traceback: $ pip install --use-wheel distribute Downloading/unpacking distribute Downloading distribute-0.7.3-cp26-none-linux_x86_64.whl Requirement already satisfied (use --upgrade to upgrade): setuptools>=0.7 in ./venv/lib/python2.6/site-packages (from distribute) Cleaning up... Exception: Traceback (most recent call last): File "/home/plucas/lib/python2.6/site-packages/pip/basecommand.py", line 134, in main status = self.run(options, args) File "/home/plucas/lib/python2.6/site-packages/pip/commands/install.py", line 241, in run requirement_set.install(install_options, global_options, root=options.root_path) File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 1256, in install if req.name == 'distribute' and req.installed_version in distribute_req: File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 390, in installed_version return self.pkg_info()['version'] File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 357, in pkg_info data = self.egg_info_data('PKG-INFO') File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 293, in egg_info_data filename = self.egg_info_path(filename) File "/home/plucas/lib/python2.6/site-packages/pip/req.py", line 307, in egg_info_path filenames = os.listdir(base) OSError: [Errno 2] No such file or directory: '/home/plucas/build/distribute/pip-egg-info'
* | Various fixesMark Roberts2014-04-251-1/+1
|/ | | | | | | | Bump version number to 0.9.1 Update readme to show supported Kafka/Python versions Validate arguments in consumer.py, add initial consumer unit test Make service kill() child processes when startup fails Add tests for util.py, fix Python 2.6 specific bug.
* Merge branch 'master' into developmrtheb2014-03-171-0/+1
|\ | | | | | | | | Conflicts: test/test_unit.py
| * Merge branch 'master' into multihostsmrtheb2014-01-311-2/+2
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: kafka/client.py kafka/conn.py setup.py test/test_integration.py test/test_unit.py
| * | Allow KafkaClient to take in a list of brokers for bootstrappingMarc Labbe2013-11-141-2/+3
| | |
* | | added mockmrtheb2014-01-181-2/+1
| |/ |/|
* | 0.9.0Thomas Dimson2014-01-151-1/+2
| |
* | Version bumpThomas Dimson2014-01-151-1/+1
| |
* | Remove tox from requiresDavid Arthur2013-12-281-1/+1
|/ | | | Fixes #85
* Bootstrap distribute/tox with setuptoolsDavid Arthur2013-06-071-2/+2
| | | | Is there a better way to do this?
* toxify all the tests and use xfail marksIvan Pouzyrevsky2013-06-071-3/+31
|
* Update README and setup.py with new versionDavid Arthur2013-04-021-1/+1
|
* Integration tests passingDavid Arthur2013-04-021-1/+1
|
* Update README.md with install instructionsDavid Arthur2012-10-021-0/+1
|
* Renaming kafka.py to client.pyDavid Arthur2012-10-021-1/+1
|
* Start work on packaging issue #3David Arthur2012-10-021-0/+12