forked from hishnash/channelsmultiplexer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 896 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='channelsmultiplexer',
version="0.0.3",
url='https://github.com/hishnash/channelsmultiplexer',
author='Matthaus Woolard',
author_email='matthaus.woolard@gmail.com',
description="Multiplexing Consumer for django Channels.",
long_description=open('README.rst').read(),
license='MIT',
packages=find_packages(exclude=['tests']),
include_package_data=True,
python_requires='>=3.7',
install_requires=[
'channels>=3.0',
],
extras_require={
'tests': [
'pytest~=6.1.2',
"pytest-django~=4.1.0",
"pytest-asyncio~=0.14.0",
'coverage~=4.4',
],
},
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)