-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 880 Bytes
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
[tool.poetry]
name = "badea-mouse"
version = "0.1.0"
description = ""
authors = ["eric <ericwb95@gmail.com>", "j1c <jaewonc78@gmail.com>"]
license = "MIT"
packages = [{ include = "pkg" }]
include = ["pkg/**/*"]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
typing-extensions = "^4.3"
seaborn = "^0.13.0"
graspologic = "3.4.1"
jupyterlab = "^3.4.6"
pkg = {path = "pkg", develop = true}
statsmodels = "^0.14.0"
plotly = "^5.10.0"
jupyterlab-code-formatter = "^1.5.3"
black = "^22.8.0"
scipy = "^1.9.1"
scikit-learn = "^1.1.2"
CairoSVG = "^2.5.2"
svgutils = "^0.3.4"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
jupyter-book = "^0.13.1"
jupyterlab-code-formatter = "^1.5.3"
isort = "^5.10"
myst-nb = ">=0.13.1,<0.14.0"
ipykernel = "^6.23.1"
[build-system]
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"