Release bits and bobs

This commit is contained in:
Andrew Godwin 2015-06-15 00:22:28 -07:00
parent d9681df69a
commit 2096d6a9e6
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
*.egg-info *.egg-info
dist/

View File

@ -1,4 +1,4 @@
django-channels Django Channels
=============== ===============
This is a work-in-progress code branch of Django implemented as a third-party This is a work-in-progress code branch of Django implemented as a third-party
@ -20,7 +20,7 @@ Make sure you're running Django 1.8. This doesn't work with 1.7 (yet?)
If you want to use WebSockets (and that's kind of the point) you'll need If you want to use WebSockets (and that's kind of the point) you'll need
``autobahn`` and ``twisted`` packages too. Python 3/asyncio support coming soon. ``autobahn`` and ``twisted`` packages too. Python 3/asyncio support coming soon.
``pip install django-channels`` and then add ``channels`` to the **TOP** ``pip install channels`` and then add ``channels`` to the **TOP**
of your ``INSTALLED_APPS`` list (if it is not at the top you won't get the of your ``INSTALLED_APPS`` list (if it is not at the top you won't get the
new runserver command). new runserver command).

View File

@ -1,7 +1,7 @@
from setuptools import find_packages, setup from setuptools import find_packages, setup
setup( setup(
name='django-channels', name='channels',
version="0.1", version="0.1",
url='http://github.com/andrewgodwin/django-channels', url='http://github.com/andrewgodwin/django-channels',
author='Andrew Godwin', author='Andrew Godwin',