-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 841 Bytes
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
[project]
name = "channels-envelope"
version = "1.1.0"
authors = [
{ name="VoteIT dev team", email="info@voteit.se" },
]
description = "Message handling for Django channels"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
]
dependencies = [
"channels[daphne]",
"django",
"django-rq",
"rq",
"pydantic < 2",
"async-signals",
]
[tool.setuptools]
packages = ["envelope"]
[project.urls]
Homepage = "https://github.com/VoteIT/channels_envelope"
Issues = "https://github.com/VoteIT/channels_envelope/issues"
Changelog = "https://github.com/VoteIT/channels_envelope/blob/main/CHANGELOG.md"