-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
60 lines (52 loc) · 1.65 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
[build-system]
requires = ["setuptools >= 75.5.0", "requests ~= 2.32.3"]
build-backend = "setuptools.build_meta"
[project]
name = "Papi-web"
description = "An application to help chess arbiters and organizers manage their tournaments"
requires-python = ">=3.12.0"
version = "2.6.0a0"
authors = [
{ name = "Pascal Aubry", email = "[email protected]" },
{ name = "Sammy Plat", email = "[email protected]" },
{ name = "Timothy Armes", email = "[email protected]" },
{ name = "Youri Aubry" },
]
license = { text = "AGPL v3.0" }
readme = "README.md"
dependencies = [
"AdvancedHTMLParser ~= 9.0.2",
"XlsxWriter ~= 3.2.2",
"aioodbc ~= 0.5.0",
"babel ~= 2.16.0",
"chardet ~= 5.2.0",
"colorama ~= 0.4.6",
"colorlog ~= 6.9.0",
"cryptography ~= 44.0.0",
"python-dateutil ~= 2.9.0",
"httpdate ~= 1.2.0",
"Jinja2 ~= 3.1.5",
"litestar ~= 2.14.0",
# downgrading pefile from 2024.8.26 to 2023.2.7, cf https://github.com/pyinstaller/pyinstaller/issues/8762
"pefile == 2023.2.7",
"phonenumbers ~= 8.13.52",
"pluggy ~= 1.5.0",
"pyexcel-ods3 ~= 0.6.1",
"pyodbc ~= 5.2.0",
"pywin32-ctypes ~= 0.2.3",
"requests ~= 2.32.3",
"trf @ https://github.com/papi-web-org/TRF/archive/refs/tags/v1.1.3-unofficial.zip",
"uvicorn ~= 0.34.0",
"validators ~= 0.34.0",
"wheel >= 0.45.1",
]
[project.optional-dependencies]
lint = ["ruff", "validate-pyproject", "pipdeptree", "mypy", "pre-commit"]
translate = ["transformers", "torch", "sentencepiece", "sacremoses"]
export = ["PyInstaller"]
tests = ["pytest"]
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
check_untyped_defs = true
disable_error_code = ["import-untyped", "no-redef"]