-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (56 loc) · 1.64 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
[tool.poetry]
name = "kymata"
version = "1.0.2"
description = "Core Kymata codebase, including statistical analysis and plotting tools"
authors = [
"Kymata Research Group <[email protected]>",
"Lakra, Anirudh <[email protected]>",
"Parish, Oliver <[email protected]>",
"Thwaites, Andrew <[email protected]>",
"Wingfield, Cai <[email protected]>",
"Yang, Chentianyi <[email protected]>",
]
homepage = "https://kymata.org"
repository = "https://github.com/kymata-atlas/kymata-core"
documentation = "https://kymata-atlas.github.io/kymata-core/"
readme = "README.md"
packages = [{include = "kymata"}]
keywords = ["neuroscience", "neuroimaging"]
classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization"
]
[tool.poetry.dependencies]
python = "~3.11"
mne = "^1.5.1"
colorama = "^0.4.5"
jupyter = "^1.1.0"
llvmlite = "^0.41.0"
mat73 = "^0.62"
matplotlib = "^3.7.1"
pandas = "^2.1.1"
PyYAML = "^6.0"
requests = "^2.32.0"
scikit-learn = "^1.3.2"
seaborn = "^0.12.2"
pyvistaqt = "^0.11.0"
nibabel = "^5.1.0"
traitlets = "^5.13.0"
sparse = "^0.14.0"
xarray = "^2023.9.0"
pyqt6 = "^6.6.1"
h5io = "^0.1.9"
mkdocs-material = "^9.5.24"
mkdocstrings = {extras = ["python"], version = "^0.25.1"}
twine = "^5.1.1"
[tool.poetry.dev-dependencies]
pytest = "^8.3.2"
ipdb = "^0.13.13"
ruff = "^0.5.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"