mirror of
https://github.com/django/daphne.git
synced 2025-04-21 17:22:03 +03:00
Version 0.7
This commit is contained in:
parent
48d6f63fb2
commit
c6527bebf1
|
@ -3,10 +3,11 @@ Django Channels
|
|||
|
||||
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
|
||||
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
|
||||
API is not yet stable.
|
||||
This is still **beta** software: the API is mostly settled, but might change
|
||||
a bit as things develop.
|
||||
|
||||
Documentation, installation and getting started instructions are at
|
||||
http://channels.readthedocs.org
|
||||
|
|
4
setup.py
4
setup.py
|
@ -2,11 +2,11 @@ from setuptools import find_packages, setup
|
|||
|
||||
setup(
|
||||
name='channels',
|
||||
version="0.1.1",
|
||||
version="0.7",
|
||||
url='http://github.com/andrewgodwin/django-channels',
|
||||
author='Andrew Godwin',
|
||||
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',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
|
|
Loading…
Reference in New Issue
Block a user