summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove simplejson dependency: use json module from stdlib.Javier Cacheiro2023-01-191-1/+1
| | | | Add missing redis dependency.
* websockify 0.11.0v0.11.0Pierre Ossman2022-12-161-1/+1
|
* Also require all token plugin requirementsPierre Ossman2022-12-161-1/+5
| | | | | | Token plugins are technically optional, but if you are installing websockify via pip then all of these are available anyway. So let's make things simple for users.
* Fix bad classifiers arrayv0.10.0Pierre Ossman2021-07-221-6/+6
|
* websockify 0.10.0Pierre Ossman2021-07-221-1/+1
|
* Update classifiers to just Python 3Pierre Ossman2021-02-081-4/+6
| | | | We no longer support anything older than Python 3.4.
* websockify 0.9.0v0.9.0Pierre Ossman2019-08-131-1/+1
|
* Mark package description as being MarkdownPierre Ossman2019-08-131-0/+1
| | | | | PyPi is now very picky about the format and will not accept things blindly.
* Remove javascript files from setup.pySamuel Mannehed2019-07-141-3/+0
| | | | | The js implementation of websockify has been split into a different repository, this means that these files are no longer present here.
* Fix all old kanaka linksPierre Ossman2019-07-041-1/+1
| | | | We now have our own organisation for noVNC and friends.
* Don't try to install Flash handling codePierre Ossman2017-03-101-5/+1
| | | | The actual code was removed in 10e13d7.
* Remove base64.js from setup.pyPierre Ossman2017-03-091-1/+0
| | | | Overlooked in the removal of base64.js in 4099949.
* Update to 0.8.0v0.8.0Solly Ross2016-02-181-1/+1
| | | | See CHANGES.txt for more information
* Update to 0.7.0v0.7.0Solly Ross2015-07-231-1/+1
| | | | See CHANGES.txt for details.
* Add Python 3 trove classifiers.Vaibhav Sagar2015-03-171-0/+6
| | | | This makes <http://py3readiness.org> display the status of this package correctly :).
* Update to v0.6.0v0.6.0Solly Ross2014-02-181-1/+1
| | | | | | | *** NOTE *** This version of websockify will break existing code which sub-classes `WebsocketProxy` -- see pull requests #110 and #111
* Update to version 0.5.1v0.5.1Joel Martin2013-06-271-1/+1
| | | | | | *** NOTE *** This version of websockify no longer supports the old Hixie protocol.
* README: no longer supporting Hixie.Joel Martin2013-03-121-1/+1
| | | | | NOTE: Hixie support is in version 0.4.X. If necessary, I will branch and apply critical fixes release a new 0.4.X tagged version.
* Update to version 0.4.1v0.4.1Joel Martin2013-03-121-1/+9
| | | | | | | | | | | *** IMPORTANT NOTE *** 0.4.X is the last minor version to support the Hixie protocol. 0.5.0 will drop the Hixie protocol support. The latest released version of all major browsers (and web-socket-js) support the IETF 6455 protocol. - Other changes: add 'include/' sub-dir to source distribution and to installed packaged.
* Update to version 0.4.0v0.4.0Joel Martin2013-03-121-1/+1
| | | | | | | | | | | *** IMPORTANT NOTE *** This is the last minor version to support the Hixie protocol. I may do bug fixes (e.g. 0.4.1) but 0.5.0 will drop the Hixie protocol support. The latest released version of all major browsers (and web-socket-js) support the IETF 6455 protocol. - Other changes: updating TODO and release process notes.
* Update to version 0.3.0 and upload to pypi.v0.3.0Joel Martin2013-01-151-1/+1
| | | | | | | Update to 0.3.0 and document uploading to pypi.python.org. Install thus: sudo pip install websockify
* updated versionJodok Batlogg2012-10-151-1/+1
|
* Refactor into python modules: websocket, websocketproxyJoel Martin2012-09-171-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make websockify subdirectory and move websocket.py -> websockify/websocket.py and websockify -> websockify/websocketproxy.py. Create a ./run script that launches websockify as before (unfortunately can't have a websockify script at the same level since this is now a directory). Make websockify.py a symlink to ./run. Once the package is installed, the main launch script will be /usr/bin/websockify. This makes it easier to package up websockify as a python module. setup.py should now properly install websockify as a module. Note that to include the base websocket module/class you will now do: import websockify.websocket #OR from websockify.websocket import WebSocketServer To import the full websocket proxy functionality: import websockify.websocketproxy #OR from websockify.websocket import WebSocketProxy This will also help with startup speed slightly because the code in websocketproxy will now be byte compiled since it is no longer in the main invocation script.
* Release version 0.1.0v0.1.0Joel Martin2012-05-111-1/+1
|
* Eggify websockifyCédric de Saint Martin2012-02-181-0/+30