-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 934 Bytes
/
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
[project]
name = "funROI"
version = "0.1.0"
authors = [{name = "Ruimin Gao", email = "ruimin.gao@gatech.edu"}]
dependencies = [
"sphinx>=4.0",
"sphinx_rtd_theme",
"h5py==3.11.0",
"nibabel==5.3.2",
"numpy==2.1.3",
"pandas==2.2.3",
"scipy==1.14.1",
"statsmodels==0.14.3",
"nilearn==0.10.4"
]
description = "A Python package for functional ROI analysis in fMRI data"
homepage = "https://github.com/GT-LIT-Lab/funROI"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[tool.black]
line-length = 79
[tool.coverage.run]
source = ["./funROI"]
branch = true
omit = ["funROI/tests/*"]
[tool.coverage.html]
directory = "htmlcov"
title = "Coverage Report"
[tool.pytest.ini_options]
addopts = "--cov=funROI --cov-branch --cov-report=html"
log_cli = true
log_cli_level = "INFO"
log_format = "%(asctime)s [%(levelname)s] %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"