-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathsetup.py
44 lines (43 loc) · 1.46 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
41
42
43
44
from setuptools import find_packages, setup
from djangochannelsrestframework import __version__
setup(
name="djangochannelsrestframework",
version=__version__,
url="https://github.com/NilCoalescing/djangochannelsrestframework",
author="LostMoa Limited",
author_email="info@nilcoalescing.com",
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>=4.2.16",
"channels>=4.1.0",
"djangorestframework>=3.15.2",
],
extras_require={
"tests": [
"channels[daphne]>=4.1.0",
"pytest>=8.3.3",
"pytest-django>=4.9.0",
"pytest-asyncio>=0.24.0",
"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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
],
)