summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* python3 compat: remove lots of Python 2.5 and earlier dependent code; use ↵Sergey Shepelev2013-12-031-2/+0
| | | | print() function syntax
* Rename README{,.rst} for Github render; Thanks to Thomas Grainger and Tobias ↵Sergey Shepelev2013-09-051-1/+1
| | | | | | Megies; Fixes GH-47 https://github.com/eventlet/eventlet/issues/47
* setup: greenlet is actually required, remove --without-greenlet option, ↵Sergey Shepelev2013-01-241-10/+3
| | | | | | remove unused httplib2 test dependency; Thanks to Thomas Grainger https://github.com/eventlet/eventlet/pull/12
* setup: PEP-8Sergey Shepelev2013-01-231-20/+19
|
* I can spellRyan Williams2011-06-071-4/+4
|
* 0.9.16 brandingv0.9.16Ryan Williams2011-06-071-0/+4
|
* Finally removed pesky _main_wrapper function in greenthread thanks to ↵Ryan Williams2010-08-191-1/+1
| | | | Ambroff having added keyword argument support in greenlet 0.3. Yay cleaner, better-performing code.
* Realised that mock is only one file and is extremely useful so included it ↵Ben Ford2010-05-051-1/+1
| | | | as tests.mock
* Added websocket. This has 100% test coverage but has introduced a testing ↵Ben Ford2010-05-051-0/+1
| | | | dependency on httplib2 and mock.
* Refactored spawn_plot to not use the with-statement, so we can install the ↵Ryan Williams2010-04-171-1/+1
| | | | dev version of eventlet on 2.4.
* Updated README, updated version to dev, included README as long_description.Ryan Williams2010-03-161-6/+7
|
* Changed description slightlyRyan Williams2010-02-211-1/+1
|
* Setting zip_safe so install is less noisy.Ryan Williams2010-02-211-0/+1
|
* Moved GreenSSLObject into eventlet.green.socket, cleaned up imports ↵Ryan Williams2009-11-241-2/+1
| | | | slightly, removed PyOpenSSL dependency -- it will warn you if you need to install it.
* Finished off testing docs, put in nosewrapper script because it's a pain to ↵Ryan Williams2009-09-161-0/+1
| | | | get plugins in the path any other way.
* Added command line flags for disabling dependencies on pyopenssl or greenlet.Ryan Williams2009-08-181-1/+9
|
* Updated setup.py to include dependencies and also to include Windows in the ↵Ryan Williams2009-08-171-2/+4
| | | | classifiers.
* set version to 0.8.10; add eventlet.__version__ attributeDenis Bilenko2009-04-131-1/+2
|
* changed version number in setup.py from 0.9pre to 0.8.9Denis Bilenko2009-03-011-1/+1
|
* fix setup.py not to install greentest as a package system-wideDenis Bilenko2009-02-111-1/+1
|
* removed PyOpenSSL and greenlet from dependencies in setup.pyDenis Bilenko2008-11-071-1/+0
|
* 0.8 is out, on to 0.9predonovan2008-10-131-1/+1
|
* Prepare for 0.8donovan2008-10-131-1/+1
|
* 0.8predonovan2008-07-291-1/+1
|
* prepare for 0.7donovan2008-07-291-1/+1
|
* Fix socket_recv to return '' instead of raising ↵donovan2008-07-161-1/+1
| | | | socket.error(errno.ECONNRESET) explicitly when using an ssl socket. This allows an eventlet ssl client to talk to an eventlet ssl server properly! Thanks, Ryan Williams.
* Fix a major memory leak when using the libevent or libev hubs. Timers were ↵donovan2008-07-141-1/+1
| | | | not being removed from the hub after they fired. (Thanks Agusto Becciu).
* Add a NEWS file and an example of using the wsgi server along with a link to ↵donovan2008-07-071-1/+1
| | | | Spawning; Set version number to 0.6.1 for a release.
* Add a patch from the grugq to allow binding to a specific interface in ↵donovan2008-06-301-1/+1
| | | | api.connect_tcp.
* Prepare for 0.6 releasedonovan2008-06-261-1/+1
|
* Fix for some SwitchingToDeadGreenlet or TypeError: '_socketobject' object is ↵donovan2008-06-251-1/+1
| | | | not iterable exceptions: Passing both read=True and write=True to trampoline would cause the fd to select as both readable and writable in some error conditions. This would cause the greenlet to be spuriously resumed a second time.
* Add patch to squelch exceptions properly when running with libevent. Thanks, ↵donovan2008-06-241-1/+1
| | | | 'the grugq'
* bump to 0.5.3donovan2008-06-241-1/+1
|
* Fix a bug where eventlet.wsgi was sending chunked encoding to http/1.0 ↵donovan2008-06-201-1/+1
| | | | clients, which isn't legal. Also, tests for chunked encoding, and the absence of chunked encoding in http/1.0
* Fix a bug in generating Transfer-coding: chunked in the case of no response ↵donovan2008-06-171-1/+1
| | | | body. Fix a bug where '200 OK' was written to the access log instead of just '200'. Use the sum builtin
* Update the version number to 0.6predonovan2008-06-121-1/+1
|
* Fix bug in stackless support, remove prints, ad update the operating systems ↵donovan2008-06-111-0/+2
| | | | in setup.py
* Update version number in prep for releasedonovan2008-06-111-1/+1
|
* merge up to svn branch r120donovan2008-05-221-0/+1
|
* Some tweaks I made while importing back into svndonovan2008-05-211-8/+1
|
* Put the pid at the beginning of this logline.donovan2008-05-201-1/+9
|
* Patch from Chuck Thier to properly install subpackages (eventlet.hubs and ↵donovan2008-04-281-2/+2
| | | | eventlet.support) now that we have subpackages
* Initial implementation of libeventhub. Works for some basic socket stuff ↵rdw2008-03-161-0/+28
but it's got problems.