-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
43 lines (39 loc) · 901 Bytes
/
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
[project]
name = "questplus"
description = "A QUEST+ implementation in Python."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["science", "neuroscience", "psychology", "staircase"]
authors = [
{name = "Richard Höchenberger"},
{email = "[email protected]"}
]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python"
]
dependencies = [
"numpy",
"scipy",
"xarray",
"json_tricks"
]
dynamic = ["version"]
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
(
| ^/questplus/tests/
)
'''
[tool.pytest.ini_options]
filterwarnings = [
"error"
]