From 2096d6a9e63ee40e56ed5dc7cf8e753806fd106d Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Mon, 15 Jun 2015 00:22:28 -0700 Subject: [PATCH] Release bits and bobs --- .gitignore | 1 + README.rst | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 11041c7..08407a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.egg-info +dist/ diff --git a/README.rst b/README.rst index 30421e4..32bc90b 100644 --- a/README.rst +++ b/README.rst @@ -1,4 +1,4 @@ -django-channels +Django Channels =============== 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 ``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 new runserver command). diff --git a/setup.py b/setup.py index ae21988..04eb552 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import find_packages, setup setup( - name='django-channels', + name='channels', version="0.1", url='http://github.com/andrewgodwin/django-channels', author='Andrew Godwin',