-
Notifications
You must be signed in to change notification settings - Fork 147
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1 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
[build-system]
# Minimum requirements for the build system to execute, according to PEP518
# specification.
requires = ["setuptools>=64", "setuptools-scm>=8", "build", "numpy", "cython", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pycortex"
dynamic = ["authors", "license", "readme", "version", "classifiers", "dependencies"]
[dependency-groups]
dev = [
{include-group = "test"},
"mypy",
]
test = [
"pycortex[headless]",
"ipykernel>=6.31.0",
"nbclient>=0.10.2",
"nbformat>=5.10.4",
"pytest",
"pytest-cov",
]
[project.optional-dependencies]
headless = [
"playwright>=1.58.0"
]
[tool.setuptools_scm]
version_file = "cortex/_version.py"
local_scheme = "no-local-version"
[tool.codespell]
skip = '.git,*.pdf,*.svg,*.css,*.min.*,*.gii,resources,OpenCTM-1.0.3,filestore,build,_build'
check-hidden = true
# ignore-regex = ''
ignore-words-list = 'nd,acount,anormal,fpt,coo,transpart,FO,lins'
[tool.mypy]
allow_redefinition = true
disable_error_code = "import-untyped"