-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (70 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
81 lines (70 loc) · 1.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "shapfire"
version = "0.1.0"
description = "."
license = "MIT"
authors = ["NicklasXYZ"]
readme = "README.md"
repository = "https://github.com/NicklasXYZ/shapfire"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
# See https://python-poetry.org/docs/dependency-specification/
python = ">=3.8,<3.11"
scikit-learn = "^1.0"
pandas = "^1.3.3"
numpy = "1.21"
matplotlib = "^3.4.3"
seaborn = "^0.11.2"
lightgbm = "^3.3.2"
shap = "^0.40.0"
tqdm = "^4.64.0"
[tool.poetry.dev-dependencies]
pre-commit = "^2.2.0"
pytest = "^6"
pytest-cov = "^2.7"
pytest-mock = "^3.1.0"
jupyter = "^1.0.0"
nbsphinx = "^0.8.8"
sphinx-immaterial = "^0.7.3"
# used in docs to parse pyproject.toml
tomlkit = "^0.6"
sphinx-autodoc-typehints = "^1.17.0"
[tool.black]
line-length = 80
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 80
[tool.pytest.ini_options]
# Directories that are not visited by pytest collector:
norecursedirs = "*.egg .eggs dist build docs .tox .git __pycache__"
# Extra options:
addopts = [
"--strict-markers",
"--doctest-modules",
"--cov=ShapFire",
"--cov-report=term:skip-covered",
"--cov-report=html",
"--cov-branch",
"--cov-append",
]