File: pyproject.toml

package info (click to toggle)
python-questplus 2023.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 320 kB
  • sloc: python: 1,345; makefile: 18
file content (43 lines) | stat: -rw-r--r-- 901 bytes parent folder | download
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 = "richard.hoechenberger@gmail.com"}
]
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"
]