-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
72 lines (63 loc) · 1.62 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "hbayesdm"
version = "2.0.0.dev0"
description = "Python interface for hBayesDM, hierarchical Bayesian modeling of RL-DM tasks"
readme = "README.rst"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "hBayesDM developers", email = "hbayesdm-users@googlegroups.com" },
]
requires-python = ">=3.13"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy>=2.1,<3.0",
"scipy>=1.14,<2.0",
"pandas>=2.2,<3.0",
"cmdstanpy>=1.2.5,<2.0",
"matplotlib>=3.9,<4.0",
"arviz>=1.1,<2.0",
]
[project.urls]
Repository = "https://github.com/CCS-Lab/hBayesDM"
Documentation = "http://hbayesdm.readthedocs.io/"
[dependency-groups]
dev = [
"pytest>=8.3",
"pytest-rerunfailures>=14",
"ruff>=0.7",
"mypy>=1.13",
"sphinx>=8",
"sphinx-autodoc-typehints>=2.5",
"sphinx-rtd-theme>=3",
# Codegen pipeline (commons/convert-to-{r,py}.py).
"pyyaml>=6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["hbayesdm"]
[tool.hatch.build.targets.sdist]
include = ["hbayesdm", "README.rst"]
[tool.hatch.build]
include = [
"hbayesdm/**/*.py",
"hbayesdm/common/extdata/**/*",
"hbayesdm/common/stan_files/**/*",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.13"
ignore_missing_imports = true
follow_imports = "skip"