forked from NilCoalescing/djangochannelsrestframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.27 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
from setuptools import find_packages, setup
from djangochannelsrestframework import __version__
setup(
name="djangochannelsrestframework",
version=__version__,
url="https://github.com/lostmoa/djangochannelsrestframework",
author="LostMoa Limited",
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>=2.2", "channels>=3.0", "djangorestframework>=3.0"],
extras_require={
"tests": [
"pytest>=7.0.1",
"pytest-django>=4.5.2",
"pytest-asyncio>=0.18.1",
"coverage>=6.3.1",
],
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
],
)