-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.59 KB
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
[project]
name = "funROI"
version = "1.0.0.post1"
authors = [
{name = "Ruimin Gao", email = "ruimin.gao@gatech.edu"},
{name = "Anna A. Ivanova", email = "a.ivanova@gatech.edu"}
]
dependencies = [
"sphinx>=4.0",
"sphinx_rtd_theme",
"h5py>=3.0.0",
"nibabel>=5.2.0",
"numpy>=1.22.4",
"pandas>=2.2.0",
"scipy>=1.8.0",
"statsmodels",
"nilearn",
"boto3"
]
description = "A Python package for functional ROI analyses of fMRI data"
homepage = "https://github.com/GT-LIT-Lab/funROI"
readme = "README.rst"
license = { file = "LICENSE" }
keywords = ["fMRI", "ROI", "neuroimaging", "data analysis"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
]
[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 = ["*/tests/*", "*/__init__.py", "*/conftest.py"]
[tool.coverage.html]
directory = "htmlcov"
title = "Coverage Report"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_format = "%(asctime)s [%(levelname)s] %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"