daphne/setup.py
2016-01-02 17:53:53 -08:00

17 lines
456 B
Python

from setuptools import find_packages, setup
setup(
name='channels',
version="0.8",
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.7 and up only.",
license='BSD',
packages=find_packages(),
include_package_data=True,
install_requires=[
'Django',
]
)