-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (40 loc) · 1.11 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
[project]
name = "opioids-analysis"
version = "0.1.0"
description = "Analysis of the Opioids dataset from the article 'Cortico-Subcortical Dysconnectivity Following Opioid Administration Correlates with Analgesia in the Awake Mouse Brain'."
authors = [
{ name = "Samuel Le Meur-Diebolt", email = "[email protected]" },
{ name = "Jean-Charles Mariani", email = "[email protected]" },
]
dependencies = [
"colorcet~=3.1.0",
"h5py~=3.10.0",
"ipykernel~=6.29.3",
"joblib~=1.3.2",
"jupyterlab~=4.1.4",
"matplotlib~=3.8.3",
"mypy~=1.8.0",
"networkx~=3.2.1",
"nibabel~=5.2.1",
"nilearn==0.10.1",
"nitime~=0.10.2",
"numpy~=1.26.4",
"pybids~=0.16.4",
"ruff~=0.3.1",
"scipy~=1.12.0",
"statsmodels~=0.14.1",
"tqdm~=4.66.2",
"pandas[excel]~=2.2.1",
]
readme = "README.md"
requires-python = ">= 3.11"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/opioids_analysis"]