mirror of
https://github.com/django/daphne.git
synced 2025-07-02 02:43:08 +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
|
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
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user