Skip to content

Commit

Permalink
Merge pull request #176 from bdrung/master
Browse files Browse the repository at this point in the history
Various packaging and documentation fixes
  • Loading branch information
sontek committed Feb 2, 2014
2 parents da136d5 + dbef02b commit 9af3896
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -1,7 +1,10 @@
include LICENSE
include AUTHORS
include CHANGELOG
include MANIFEST.in
include README.rst
recursive-include socketio *py
exclude socketio/.ropeproject/*
exclude socketio/sample_protocol_for_doc.py
recursive-include docs *
recursive-include tests *
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -17,7 +17,7 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
here = os.path.dirname(__file__)
socketio_path = os.path.abspath(os.path.join(here, '../../socketio'))
socketio_path = os.path.abspath(os.path.join(here, '../..'))
sys.path.insert(0, socketio_path)
# -- General configuration -----------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/handler.rst
@@ -1,7 +1,7 @@
.. _handler_module:

:mod:`socketio.handler`
======================
=======================

This is a lower-level transports handler. It is responsible for calling your WSGI application.

Expand Down
2 changes: 1 addition & 1 deletion docs/source/sgunicorn.rst
@@ -1,7 +1,7 @@
.. _gunicorn_module:

:mod:`socketio.sgunicorn`
======================
=========================

.. automodule:: socketio.sgunicorn
:members:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/transports.rst
@@ -1,7 +1,7 @@
.. _transports_module:

:mod:`socketio.transports`
======================
==========================

This is largely an internal module, responsible for translating the
different fallback mechanisms to one abstracted Socket, dealing with
Expand Down
2 changes: 1 addition & 1 deletion docs/source/virtsocket.rst
@@ -1,7 +1,7 @@
.. _virtsocket_module:

:mod:`socketio.virtsocket`
======================
==========================

.. automodule:: socketio.virtsocket
:members:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -25,7 +25,7 @@ def run_tests(self):
license="BSD",
url="https://github.com/abourget/gevent-socketio",
download_url="https://github.com/abourget/gevent-socketio",
install_requires=("gevent-websocket",),
install_requires=("gevent", "gevent-websocket",),
setup_requires=('versiontools >= 1.7'),
cmdclass = {'test': PyTest},
tests_require=['pytest', 'mock'],
Expand Down

0 comments on commit 9af3896

Please sign in to comment.