Update setup a little

This commit is contained in:
Andrew Godwin 2016-02-21 13:17:17 +00:00
parent ee20b26921
commit b5400d0be5

View File

@ -14,14 +14,14 @@ setup(
url='http://www.djangoproject.com/', url='http://www.djangoproject.com/',
author='Django Software Foundation', author='Django Software Foundation',
author_email='foundation@djangoproject.com', author_email='foundation@djangoproject.com',
description='Django HTTP/WebSocket server', description='Django ASGI (HTTP/WebSocket) server',
long_description=open(readme_path).read(), long_description=open(readme_path).read(),
license='BSD', license='BSD',
zip_safe=False, zip_safe=False,
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
install_requires=[ install_requires=[
'asgiref', 'asgiref>=0.9',
'twisted>=15.5', 'twisted>=15.5',
'autobahn>=0.12', 'autobahn>=0.12',
], ],