-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ptvid"
description = "Identify the variety of Portuguese used in a text."
readme = "README.md"
version = "0.0.1"
dependencies = [
"accelerate>=0.27.0",
"torch>=2.2.1",
"transformers>=4.38.1",
"datasets>=2.17.1",
"pandas>=2.2.1",
"tqdm>=4.66.2",
"huggingface_hub>=0.21.3",
"evaluate>=0.4.1",
"pytest>=8.0.2",
"evaluate>=0.4.1",
"scikit-learn>=1.4.1",
"environs>=10.3.0",
"beautifulsoup4>=4.12.3",
"zstandard>=0.22.0",
"lxml>=5.2.1",
"cleantext>=1.1.4",
"fasttext-langdetect>=1.0.5",
"justext==3.0.1",
"imbalanced-learn==0.12.3",
"spacy==3.7.5"
]
requires-python = "~=3.11"
[project.optional-dependencies]
test = ["pytest==7.4.3"]
lint = ["ruff"]
notebook = [
"ipykernel==6.28.0",
"ipywidgets==8.1.1",
"matplotlib==3.8.3",
"python-dotenv==1.0.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.ruff]
exclude = [".conda"]
line-length = 120