-
Notifications
You must be signed in to change notification settings - Fork 83
/
pyproject.toml
78 lines (68 loc) · 1.94 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
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = [
"setuptools",
"setuptools_scm[toml]>=6.2",
"cython",
# Wheels need to be built with NumPy 2.0 to be compatible with 2.0 and 1.x
"numpy>=2.0.0rc1,<3; python_version > '3.8'",
# NEP29-minimum as of Aug 17, 2023 (1.25 doesn't support 3.8)
"numpy==1.22; python_version == '3.8'",
]
build-backend = "setuptools.build_meta"
[project]
name = "nitime"
dynamic = ["version"]
description = "Nitime: timeseries analysis for neuroscience data"
readme = "README.txt"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [
{ name = "Nitime developers", email = "[email protected]" },
]
maintainers = [
{ name = "Nipy Developers", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
dependencies = [
"matplotlib>=3.5",
"numpy>=1.22",
"scipy>=1.8",
]
[project.optional-dependencies]
full = [
"networkx>=2.7",
"nibabel>=4.0",
]
[project.urls]
Download = "http://github.com/nipy/nitime/downloads"
Homepage = "http://nipy.org/nitime"
[tool.setuptools.packages.find]
include = ["nitime*"]
[tool.setuptools_scm]
write_to = "nitime/_version.py"
[tool.cibuildwheel]
# Disable PyPy, and no NumPy wheels for 3.8 Linux aarch64 or musl
skip = "pp* cp38-*_aarch64 cp38-musllinux_*"
# 64-bit builds only; 32-bit builds seem pretty niche these days, so
# don't bother unless someone asks
archs = ["native"]
test-requires = [
"pytest",
"nitime[full]", # Enable all optional behavior
]
test-command = "pytest -rsx --pyargs nitime"
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]
[tool.codespell]
skip = '.git,*.pdf,*.svg,go.sum,*.css'
check-hidden = true
ignore-regex = '\b(Ines Samengo)\b'
ignore-words-list = 'nd,ans'