-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
68 lines (60 loc) · 1.76 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "django-bigredbutton"
version = "0.1.1"
description = "Django app that offers a big red button to sign out of all other user sessions"
authors = ["blag <[email protected]>"]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Session",
"Topic :: Security",
]
packages = [
{include = "bigredbutton"},
]
[tool.poetry.dependencies]
python = ">=3.11"
django = ">=4.0"
# Also required by django-qsessions, but we use types provided from it, so we require it as well
user-agents = ">=2.2.0"
[tool.poetry.group.qsessions.dependencies]
django-qsessions = ">=1.1.4"
[tool.poetry.group.user-sessions.dependencies]
django-user-sessions = ">=2.0.0"
[tool.poetry.group.test.dependencies]
aiohttp = ">=3.9.0b0" # transitive dependency, previous versions are broken on Python 3.11/3.12
coverage = {extras = ["toml"], version = "^7.3.2"}
geoip2 = ">=4.7.0"
pytest = ">=7.4.3"
pytest-cov = ">=4.1.0"
pytest-django = ">=4.6.0"
[tool.coverage.run]
branch = true
source = [
"bigredbutton",
]
omit =[
"*venv*",
"*site-packages*",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
addopts = "--cov"
norecursedirs = ".git"
pythonpath = ["."]
[tool.ruff]
line-length = 100