forked from wichmann-lab/python-psignifit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (51 loc) · 1.68 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "psignifit"
version = "4.1a"
requires-python = ">= 3.10"
dependencies = [
"scipy",
"matplotlib",
]
readme = {file = "README.md", content-type = "text/markdown"}
# Python psignifit - based on Matlab psignifit by Heiko Schütt with help from
# Felix Wichmann, Jakob Macke and Stefan Harmeling.
# Refactoring done by multiple researchers, see Github contributors.
authors = [
{name = "psignifit contributors, www.wichmann-lab.org"},
]
maintainers = [
{name = "psignifit contributors, www.wichmann-lab.org"},
]
description = "Toolbox for Bayesian psychometric function estimation"
license = {file = "COPYRIGHT"}
keywords = ["psychometric", "psychophysics", "function", "statistics"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "http://www.wichmann-lab.org/"
Documentation = "https://psignifit.readthedocs.io/en/latest/"
Repository = "https://github.com/wichmann-lab/python-psignifit.git"
Issues = "https://github.com/wichmann-lab/python-psignifit/issues"
[project.optional-dependencies]
tests = ["pytest", "pytest-cov", "flake8"]
docs = [
'sphinx',
'sphinx-gallery',
'sphinx_rtd_theme',
'matplotlib',
]