forked from django/channels_redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (33 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from os.path import dirname, join
from setuptools import find_packages, setup
from channels_redis import __version__
# We use the README as the long_description
readme = open(join(dirname(__file__), "README.rst")).read()
crypto_requires = ["cryptography>=1.3.0"]
test_requires = crypto_requires + [
"pytest",
"pytest-asyncio",
"async_generator",
"async-timeout",
]
setup(
name="channels_redis",
version=__version__,
url="http://github.com/django/channels_redis/",
author="Django Software Foundation",
author_email="foundation@djangoproject.com",
description="Redis-backed ASGI channel layer implementation",
long_description=readme,
license="BSD",
zip_safe=False,
packages=find_packages(exclude=["tests"]),
include_package_data=True,
python_requires=">=3.6",
install_requires=[
"aioredis~=1.0",
"msgpack~=1.0",
"asgiref>=3.2.10,<4",
"channels<4",
],
extras_require={"cryptography": crypto_requires, "tests": test_requires},
)