-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
64 lines (53 loc) · 1.39 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
[tool.poetry]
name = "phishing-url-detection"
version = "0.1.0"
description = "Train a machine learning model for phishing URL detection. "
authors = ["pirocheto"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
scikit-learn = "^1.3.2"
skl2onnx = "^1.15.0"
jinja2 = "^3.1.2"
seaborn = "^0.13.0"
matplotlib = "^3.8.2"
pandas = { extras = ["parquet"], version = "^2.1.3" }
tabulate = "^0.9.0"
dvc = { extras = ["s3"], version = "^3.30.2" }
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
onnxruntime = "^1.16.3"
pandas = { extras = ["parquet"], version = "^2.1.3" }
scikit-learn = "^1.3.2"
dvc = { extras = ["s3"], version = "^3.30.2" }
[tool.poetry.group.test]
optional = true
[tool.poetry.group.report.dependencies]
jinja2 = "^3.1.2"
tabulate = "^0.9.0"
[tool.poetry.group.report]
optional = true
[tool.poetry.group.dev.dependencies]
xgboost = "^2.0.2"
lightgbm = "^4.1.0"
coverage = "^7.3.2"
isort = "^5.12.0"
pylint = "^3.0.2"
flake8 = "^6.1.0"
ipykernel = "^6.27.1"
optuna = { extras = ["plotly"], version = "^3.4.0" }
plotly = "^5.18.0"
nbformat = "^5.9.2"
optuna-dashboard = "^0.13.0"
black = "^23.11.0"
[tool.poetry.group.dev]
optional = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.pylint]
good-names = ["X_train", "X_test", "C"]
[tool.pylint.MASTER]
ignore-patterns = ["test_.*?py"]