-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
71 lines (65 loc) · 1.49 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
65
66
67
68
69
70
71
[tool.poetry]
name = "my28brains"
version = "0.1.0"
description = "Brain Shape Analysis through the Menstrual Cycle"
authors = ["Adele Myers <adele@ucsb.edu>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
geomstats = { git = "https://github.com/geomstats/geomstats.git" }
joblib = "*"
matplotlib = "*"
nibabel = "*"
nilearn = "*"
open3d = "*"
pykeops = "*"
plotly = "*"
psutil = "*"
requests = "*"
rtree = "*"
scikit-image = "*"
trimesh = "*"
wandb = "*"
jupyter = "*"
pandas = "*"
jupyterlab = "*"
pytest = "*"
jupyterlab-code-formatter = "*"
pre-commit = "*"
black = "*"
flake8 = "*"
flake8-docstrings = "*"
Flake8-pyproject = "*"
isort = "*"
pyvista = "^0.43.3"
dash = "^2.15.0"
addict = "*"
tqdm = "^4.66.2"
statsmodels = "^0.14.1"
islp = "^0.3.22"
dash-bootstrap-components = "^1.5.0"
neuraloperator = {git = "https://github.com/neuraloperator/neuraloperator.git"}
torch-harmonics = "^0.6.5"
[tool.flake8]
application_import_names = "my28brains"
docstring-convention = "numpy"
import_order_style = "smarkets"
max-line-length = 88
extend-exclude = [".venv"]
extend-ignore = ["E501", "F401", "E203"]
per-file-ignores = [
"*/__init__.py: F401,F403,D104"
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
skip = [".gitignore", ".venv"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
packages = [
{ include = "src" },
{ include = "project_menstrual" },
{ include = "project_pregnancy" },
{ include = "project_regression" },
]