-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.03 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
51
52
53
54
[project]
name = "advanced_data_mining"
version = "0.2.0"
requires-python = ">=3.10"
dependencies = [
"hydra-core>=1.3.2",
"playwright>=1.55.0",
"tqdm>=4.67.1",
"nltk>=3.9.2",
"gruut>=2.4.0",
"pandas>=2.3.3",
"matplotlib>=3.10.7",
"transformers[sentencepiece]>=4.57.6",
"torch>=2.8.0",
"lightning>=2.5.5",
"mlflow>=3.9.0",
"tensorboard>=2.20.0",
"dvc==3.66.1",
"dvc-gdrive==3.0.1",
"seaborn==0.13.2"
]
[project.optional-dependencies]
dev = [
"pylint>=3.1.0",
"autopep8>=2.3.2",
"mypy>=1.17.1",
"ipykernel>=7.0.1",
"pre-commit>=4.3.0"
]
[tool.pylint."messages control"]
disable = [
"fixme",
"too-few-public-methods",
"too-many-instance-attributes",
"too-many-arguments",
"too-many-positional-arguments",
"too-many-locals",
"R0801"
]
ignore = "torchkan.py"
[tool.autopep8]
aggressive = true
max-line-length = 100
in-place = true
exclude = "*torchkan.py"
[tool.mypy]
disable_error_code = "import-untyped"
strict = true
exclude = "torchkan.py"