-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (22 loc) · 845 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
from setuptools import setup
setup(
name="django-liveview",
py_modules=["liveview"],
version="1.0.5",
python_requires=">3.7",
description="Framework for creating Realtime SPAs using HTML over the Wire technology in Django",
author="Andros Fenollosa",
author_email="[email protected]",
url="https://django-liveview.andros.dev/",
license="MIT License",
platforms=["any"],
packages=["liveview", "liveview.migrations"],
keywords=["django", "ssr", "channels", "liveview", "html-over-the-wire", "hotwire"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
install_requires=["channels", "django", "channels_redis"],
entry_points="",
)