-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
63 lines (55 loc) · 1.45 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "site-interludes"
authors = [{ name = "Dorian Lesbre", email = "dorian.lesbre@gmail.com" }]
maintainers = [{ name = "Dorian Lesbre", email = "dorian.lesbre@gmail.com" }]
version = "3.0.0"
description = "Site web pour les InterENS ludiques et les 48h des jeux"
requires-python = ">= 3.8"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"django",
"python-cas",
"python-ldap",
"loadcredential"
]
[project.urls]
Homepage = "https://interludes.ens.fr"
Repository = "https://github.com/dlesbre/site-interludes"
Issues = "https://github.com/dlesbre/site-interludes/issues"
Changelog = "https://github.com/dlesbre/site-interludes/blob/master/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
"django-stubs",
"mypy",
"ruff",
"coverage",
"pytest-cov",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "B", "W", "I"]
ignore = ["E501"]
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
disallow_untyped_calls = true
check_untyped_defs = true
disallow_untyped_decorators = true
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
plugins = "mypy_django_plugin.main"
# [[tool.mypy.overrides]]
# ignore_missing_imports = true
[tool.django-stubs]
django_settings_module = "interludes.settings"