mirror of
https://github.com/django/daphne.git
synced 2025-04-22 01:32:06 +03:00
13 lines
305 B
Python
13 lines
305 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='django-channel',
|
|
version="0.1",
|
|
url='http://github.com/andrewgodwin/django-channel',
|
|
author='Andrew Godwin',
|
|
author_email='andrew@aeracode.org',
|
|
license='BSD',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
)
|