Version 0.7

This commit is contained in:
Andrew Godwin 2015-09-08 10:33:24 -05:00
parent 48d6f63fb2
commit c6527bebf1
2 changed files with 6 additions and 5 deletions

View File

@ -3,10 +3,11 @@ 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
app, which aims to bring some asynchrony to Django and expand the options app, which aims to bring some asynchrony to Django and expand the options
for code beyond the request-response model. for code beyond the request-response model, in particular enabling WebSocket,
HTTP2 push, and background task support.
This is still **pre-alpha** software, and you use it at your own risk; the This is still **beta** software: the API is mostly settled, but might change
API is not yet stable. a bit as things develop.
Documentation, installation and getting started instructions are at Documentation, installation and getting started instructions are at
http://channels.readthedocs.org http://channels.readthedocs.org

View File

@ -2,11 +2,11 @@ from setuptools import find_packages, setup
setup( setup(
name='channels', name='channels',
version="0.1.1", version="0.7",
url='http://github.com/andrewgodwin/django-channels', url='http://github.com/andrewgodwin/django-channels',
author='Andrew Godwin', author='Andrew Godwin',
author_email='andrew@aeracode.org', author_email='andrew@aeracode.org',
description="Brings event-driven capabilities to Django with a channel system. Django 1.8 and up only.", description="Brings event-driven capabilities to Django with a channel system. Django 1.7 and up only.",
license='BSD', license='BSD',
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,