-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.33 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
[tool.poetry]
name = "whylabs-toolkit"
version = "0.1.2"
description = "Whylabs Toolkit package."
authors = ["Murilo Mendonca <[email protected]>", "Anthony Naddeo <[email protected]>",
"Christine Draper <[email protected]>"]
license = "Apache-2.0 license"
readme = "README.md"
packages = [{include = "whylabs_toolkit/**/*.py"}]
include = ["whylabs_toolkit/monitor/schema/schema.json"]
[tool.poetry.dependencies]
python = "^3.8"
whylabs-client = "^0.6.3"
pydantic = "^1.10.15"
whylogs = "^1.1.26"
jsonschema = "^4.17.3"
typing-extensions = "^4.11.0"
urllib3 = "^2.0.2, <2.1"
# diagnoser extra dependencies
pandas = { version="^2.0.3", optional=true }
numpy = { version="^1.24.1", optional=true }
tabulate = { version="^0.8.9", optional=true }
isodate = { version="^0.6.1", optional=true }
python-dateutil = { version="^2.8.2", optional=true }
[tool.poetry.group.dev.dependencies]
autoflake = "^2.0.1"
pytest = "^7.2.0"
black = "^22.10.0"
mypy = "~1.0.1"
bumpversion = "^0.6.0"
types-python-dateutil = "^2.9.0.20240316"
[tool.black]
line-length = 140
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
max-line-length = 140
ignore = ["F405"]
[tool.pyright]
include = ["whylabs_toolkit/**/*.py"]
[tool.poetry.extras]
diagnoser = ["pandas", "numpy", "tabulate", "isodate", "python-dateutil"]