File size: 1,268 Bytes
fefe31a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b98f07f
 
 
 
 
 
 
 
 
 
 
 
 
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
[tool.poetry]
name = "french-medical-nlp-leaderboard"
version = "0.1.0"
description = "Leaderboard for French medical NLP models"
authors = ["rntc <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8"
APScheduler = "*"
black = "*"
datasets = "*"
gradio = "*"
gradio-leaderboard = "0.0.13"
gradio-client = "*"
huggingface-hub = ">=0.18.0"
matplotlib = "*"
numpy = "*"
pandas = "*"
python-dateutil = "*"
tqdm = "*"
transformers = "*"
tokenizers = ">=0.15.0"
sentencepiece = "*"
torch = ">=2.6.0"
seqeval = ">=1.2.2"
scikit-learn = ">=1.3.0"

[tool.poetry.group.dev.dependencies]
ruff = "*"
isort = "*"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.ruff]
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
select = ["E", "F"]
ignore = ["E501"] # line too long (black is taking care of this)
line-length = 119
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TCH", "TID", "TRY", "UP", "YTT"]

[tool.isort]
profile = "black"
line_length = 119

[tool.black]
line-length = 119