-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.73 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "masi-qa"
version = "0.2.2"
description = "Flask-based QA tool for reviewing and annotating medical images."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Michael Kim", email = "michael.kim@vanderbilt.edu" },
{ name = "Yihao Liu", email = "yihao.liu@vanderbilt.edu" },
{ name = "Gaurav Rudravaram", email = "gaurav.rudravaram@Vanderbilt.Edu" }
]
dependencies = [
"flask==2.2.2",
"numpy<2.0",
"pandas>=2.0.3,<3.0",
"tqdm",
"Werkzeug==2.2.2",
]
keywords = ["medical-imaging", "qa", "quality-assurance", "bids", "neuroimaging"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/MASILab/masi-qa"
Repository = "https://github.com/MASILab/masi-qa"
Issues = "https://github.com/MASILab/masi-qa/issues"
[project.scripts]
masi-qa = "masi_qa.app_montage:main"
masi-bids-qa = "masi_qa.app_montage:main_bids"
[tool.setuptools]
package-dir = { "" = "src" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
masi_qa = ["templates/**"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"
filterwarnings = [
"ignore::DeprecationWarning:werkzeug",
"ignore::DeprecationWarning:ast",
]