forked from lobantseff/ml-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (60 loc) · 1.24 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
64
65
66
67
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlproject"
version = "0.1.0"
description = "A template for a machine learning project"
authors = [{ name = "Your Name", email = "[email protected]" }]
license = { file = "LICENSE" }
readme = "README.md"
dependencies = [
"albumentations",
"black",
"flake8",
"matplotlib",
"numpy",
"pandas",
"opencv-python",
"pillow",
"pydicom",
"scipy",
"seaborn",
"scikit-image",
"scikit-learn",
"statsmodels",
"tqdm @ git+https://github.com/tqdm/tqdm.git",
]
[project.scripts]
ml-project-training = "mlproject.package0.hello:main"
[tool.setuptools.packages]
find = { where = ["src"] }
[tool.setuptools]
package-dir = { "" = "src" }
[tool.pylint]
ignore = ["libs", "sandbox"]
persistent = true
[tool.pylint.typecheck]
ignored-modules = ["cv2"] # Modules to ignore for type checking
[tool.pylint.messages-control]
# List of disabled warnings/messages
disable = [
"C0116",
"C0209",
"C0301",
"C0115",
"C0302",
"C0114",
"C0103",
"W1202",
"W1203",
"W0201",
"W0108",
"W0621",
"W0718",
"C2801",
"C0301",
"W0603",
"E0611",
"R0902",
]