-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.09 KB
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
[project]
name = "codif-ape-nace-revision"
version = "0.1.0"
description = "This repository is dedicated to the revision of the Nomenclature statistique des Activités économiques dans la Communauté Européenne (NACE)."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"langchain-community>=0.3.1",
"langchain-openai>=0.3.19",
"langchain-qdrant>=0.2.0",
"mlflow>=2.16.2",
"openpyxl>=3.1.3",
"pandas>=2.2.2",
"transformers>=4.53.2",
"xlrd>=2.0.1",
"s3fs>=2025.3.2",
"duckdb>=1.2.1",
"langchain-huggingface>=0.3.0",
"langfuse>=2.0.0",
"vllm>=0.10.1",
"flashinfer-python>=0.2.3",
"huggingface-hub[cli]>=0.33.1",
"jupyter>=1.1.1",
"seaborn>=0.13.2",
"plotly>=6.3.0",
]
authors = [
{name="Thomas Faria", email="thomas.faria@insee.fr"}
]
[dependency-groups]
dev = [
"ruff>=0.11.0",
"pre-commit>=4.2.0",
"vulture>=2.14"
]
[tool.setuptools]
packages = ["src"]
[tool.ruff]
line-length = 120
[tool.uv]
default-groups = ["dev"]
[tool.vulture]
paths = ["src"]
ignore_decorators = ["@model_validator"]
min_confidence = 80