-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
66 lines (60 loc) · 1.84 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
60
61
62
63
64
65
66
[project]
name = "NeuroRuler"
authors = [
{ name="Peifeng He", email="hankhe@ad.unc.edu" },
{ name="Madison Lester", email="madiali@email.unc.edu" },
{ name="Eric Schneider", email="eric@cs.unc.edu" },
{ name="Jesse Wei", email="jesse@cs.unc.edu" },
]
description = "A program that calculates head circumference from MRI data (.nii, .nii.gz, .nrrd)."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
# dependencies set in setup.py
# version set in NeuroRuler/GUI/__init__.py
# keywords set in setup.py
dynamic = ["dependencies", "version", "keywords"]
[project.urls]
"Homepage" = "https://github.com/NIRALUser/NeuroRuler"
"Bug Tracker" = "https://github.com/NIRALUser/NeuroRuler/issues"
[build-system]
requires = ["setuptools>=67.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
# Source: https://github.com/mmwave-capture-std/mmwave-capture-std/blob/main/pyproject.toml#LL35C1-L65C2
[tool.mypy]
python_version = "3.8"
files = ["NeuroRuler"]
show_error_codes = true
pretty = true
#strict = true
allow_redefinition = true
disallow_subclassing_any = true
#disallow_untyped_calls = true
#disallow_untyped_defs = true
#disallow_incomplete_defs = true
no_implicit_optional = true
local_partial_types = true
#no_implicit_reexport = true
strict_equality = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
#warn_return_any = true
#warn_unreachable = true
# Don't know what this does
[[tool.mypy.overrides]]
module = [
"pytest",
]