-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.22 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
[tool.poetry]
name = "obsinthe"
version = "0.0.3"
description = ""
authors = []
packages = [
{include = "obsinthe"},
]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "*"
pyarrow = "*"
requests = "*"
tqdm = "*"
plotly = { version = "*", optional = true }
cufflinks = { version = "*", optional = true }
umap-learn = { version = "*", optional = true }
scikit-learn = { version = "*", optional = true }
responses = { version = "*", optional = true }
[tool.poetry.extras]
vis = ["plotly", "cufflinks"]
ml = ["umap-learn", "scikit-learn"]
test = ["responses"]
all = ["plotly", "cufflinks",
"umap-learn", "scikit-learn",
"responses"]
[tool.poetry.dev-dependencies]
black = "*"
flake8 = "*"
isort = "*"
jupyter = "*"
notebook = "^6.5.4"
pre-commit = "*"
pytest = "*"
python-dotenv = "*"
responses = "*"
# Pinning due to old notebook dependceny, see for example here:
# https://github.com/microsoft/azuredatastudio/issues/24443
traitlets = "=5.9.0"
[tool.isort]
profile = "black"
force_single_line = true
atomic = true
order_by_type = false
case_sensitive = false
lines_after_imports = 2
line_length = 88
[tool.black]
line-length = 88
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"