-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.37 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 >= 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.11.0"
version = "2.4.19"
authors = [
{name = "Pascal Aubry", email = "papi-web@echecs-bretagne.fr"},
{name = "Sammy Plat", email = "papi-web@echecs-bretagne.fr"},
{name = "Timothy Armes", email = "tim@timothyarmes.com"},
]
license = { text = "AGPL v3.0" }
readme = "README.md"
dependencies = [
"AdvancedHTMLParser ~= 9.0.2",
"XlsxWriter ~= 3.2.2",
"babel ~= 2.16.0",
"chardet ~= 5.2.0",
"colorama ~= 0.4.6",
"colorlog ~= 6.9.0",
"cryptography ~= 44.0.0",
"httpdate ~= 1.2.0",
"Jinja2 ~= 3.1.5",
"litestar ~= 2.14.0",
"pefile >= 2024.8.26",
"phonenumbers ~= 8.13.52",
"pyexcel-ods3 ~= 0.6.1",
"pyodbc ~= 5.2.0",
"pywin32-ctypes ~= 0.2.3",
"requests ~= 2.32.3",
"transformers ~= 4.47.1",
"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",
]
translate = [
"torch",
"sentencepiece",
"sacremoses",
]
export = [
"PyInstaller",
]
tests = [
"pytest",
]
[tool.ruff.format]
quote-style = "single"