-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
79 lines (71 loc) · 1.92 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
79
[build-system]
requires = [
"setuptools>=68.0",
"setuptools-scm[toml]>=8.0",
"wheel",
"numpy>=1.21.2",
"scipy",
"cython~=3.0",
"twine>=4.0.1"
]
build-backend = "setuptools.build_meta"
[project]
name = "rsatoolbox"
description = "Representational Similarity Analysis (RSA) in Python"
requires-python = ">=3.8"
authors = [
{name="rsatoolbox authors"},
]
keywords = ["neuroscience"]
license = {file = "LICENSE"}
classifiers = [
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'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',
]
dynamic = ["readme", "dependencies", "version"]
[project.optional-dependencies]
imaging = [
"mne~=1.5.1",
"nibabel~=5.1.0",
"neuroimagingtools~=1.1.4",
]
[project.urls]
homepage = "https://github.com/rsagroup/rsatoolbox"
documentation = "https://rsatoolbox.readthedocs.io/"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}
[tool.pytest.ini_options]
testpaths = [
"tests"
]
python_files = "*.py"
[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/tests"
before-test = "pip install -r tests/requirements.txt"
skip = ["*-win32", "*-manylinux_i686", "*-musllinux_*", "pp*"]
[tool.pyright]
include = ["src"]
exclude = []
ignore = []
defineConstant = { DEBUG = true }
stubPath = ""
reportMissingImports = false
pythonVersion = "3.11"
executionEnvironments = [
{ root = "src" }
]