daphne/setup.py
2015-09-08 10:33:24 -05:00

14 lines
409 B
Python

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