-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
71 lines (66 loc) · 2.6 KB
/
pyproject.toml
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
# ##############################################################################
# This file is part of df_websockets #
# #
# Copyright (C) 2020 Matthieu Gallet <[email protected]> #
# All Rights Reserved #
# #
# You may use, distribute and modify this code under the #
# terms of the (BSD-like) CeCILL-B license. #
# #
# You should have received a copy of the CeCILL-B license with #
# this file. If not, please visit: #
# https://cecill.info/licences/Licence_CeCILL-B_V1-en.txt (English) #
# or https://cecill.info/licences/Licence_CeCILL-B_V1-fr.txt (French) #
# #
# ##############################################################################
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.poetry]
authors = ["Matthieu Gallet <[email protected]>"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
]
description = "Websocket integration for Django"
documentation = 'https://github.com/d9pouces/df_websockets'
license = "CECILL-B"
maintainers = ["Matthieu Gallet <[email protected]>"]
name = "df_websockets"
packages = [{include = "df_websockets"}]
readme = "README.md"
repository = 'https://github.com/d9pouces/df_websockets'
version = "1.1.0"
[tool.poetry.dependencies]
channels-redis = "^4.2.1"
django = ">=2.2"
python = ">=3.9"
[tool.poetry.group.dev.dependencies]
celery = "^5.4.0"
coverage = "^7.6.4"
daphne = "^4.1.2"
pytest-django = "^4.9.0"
tox = ">=4.4.12"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "demo_df_websockets.settings"
minversion = "6.0"
required_plugins = "pytest-django"
testpaths = ["test_df_websockets", "df_websockets"]