mirror of
https://github.com/tanrax/django-channels-more-than-present
synced 2026-01-07 05:43:38 +01:00
48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "django-channels-more-than-present"
|
|
version = "2.0.1"
|
|
description = "Tracking socket presence in rooms using django-channels"
|
|
readme = "README.rst"
|
|
license = {text = "MIT License"}
|
|
authors = [
|
|
{name = "Charlie DeTar", email = "cfd@media.mit.edu"},
|
|
]
|
|
maintainers = [
|
|
{name = "Andros Fenollosa", email = "andros@fenollosa.email"},
|
|
]
|
|
classifiers = [
|
|
"Environment :: Web Environment",
|
|
"Framework :: Django",
|
|
"Framework :: Django :: 3.2",
|
|
"Framework :: Django :: 4.0",
|
|
"Framework :: Django :: 4.1",
|
|
"Framework :: Django :: 4.2",
|
|
"Framework :: Django :: 5.0",
|
|
"Framework :: Django :: 6.0",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"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",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"Django>=3.2",
|
|
"channels>=4.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/tanrax/django-channels-more-than-present"
|
|
Repository = "https://github.com/tanrax/django-channels-more-than-present.git"
|