-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (67 loc) · 2.45 KB
/
setup.py
File metadata and controls
71 lines (67 loc) · 2.45 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
"""
Django LiveView
Real-time server-rendered interfaces for Django using WebSockets
This setup.py is maintained for backwards compatibility with older pip versions.
The canonical build configuration is in pyproject.toml.
"""
from setuptools import setup
# Read the version from pyproject.toml or define it here
__version__ = "2.2.0"
setup(
name="django-liveview",
version=__version__,
description="Real-time server-rendered interfaces for Django using WebSockets",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Andros Fenollosa",
author_email="andros@fenollosa.email",
url="https://github.com/tanrax/django-liveview",
license="MIT",
packages=["liveview"],
include_package_data=True,
install_requires=[
"django>=4.2",
"channels>=4.0.0",
"channels-redis>=4.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-django>=4.5.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
],
},
python_requires=">=3.10",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: JavaScript",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="django liveview websockets realtime stimulus channels",
project_urls={
"Homepage": "https://django-liveview.andros.dev/",
"Documentation": "https://django-liveview.andros.dev/",
"Repository": "https://github.com/Django-LiveView/liveview",
"Issues": "https://github.com/Django-LiveView/liveview/issues",
},
)