forked from NilCoalescing/djangochannelsrestframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 870 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
from setuptools import find_packages, setup
setup(
name="djangochannelsrestframework",
version="0.2.2",
url="https://github.com/hishnash/djangochannelsrestframework",
author="Matthaus Woolard",
author_email="[email protected]",
description="RESTful API for WebSockets using django channels.",
long_description=open("README.rst").read(),
license="MIT",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
install_requires=["Django>=3.*", "channels>=3.0", "djangorestframework>=3.0"],
extras_require={
"tests": [
"pytest~=5.4.0",
"pytest-django~=3.4.1",
"pytest-asyncio~=0.11.0",
"coverage~=4.4",
],
},
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)