-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
27 lines (25 loc) · 1.01 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
[project]
name = "hddm_wfpt"
version="0.1.0.rc0"
authors = [ {name="Alexander Fengler", email="[email protected]"},
{name="Paul Xu", email="[email protected]"},
{name="Michael Frank", email="[email protected]"}
]
description="HDDM is a python module that implements Hierarchical Bayesian estimation of Drift Diffusion Models."
readme = "Readme.rst"
requires-python = ">=3.9,<3.12"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
dependencies = ["numpy >=1.23.4", "scipy >= 1.9.1", "cython >= 0.29.32"]
[project.urls]
"Homepage" = "https://github.com/lnccbrown/hddm-wfpt"
"Bug Tracker" = "https://github.com/lnccbrown/hddm-wfpt/issues"
[build-system]
requires = ["setuptools", "wheel", "Cython>=0.29.32", "numpy >= 1.23.4"]