forked from CCS-Lab/hBayesDM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.38 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
[tool.poetry]
name = "hbayesdm"
version = "1.3.0.9000"
description = "Python interface for hBayesDM, hierarchical Bayesian modeling of RL-DM tasks"
authors = ["hBayesDM developers <[email protected]>"]
license = "GPLv3"
readme = "README.rst"
repository = "https://github.com/CCS-Lab/hBayesDM"
documentation = "http://hbayesdm.readthedocs.io/"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only"
]
include = [
{path="hbayesdm/common/extdata/**/*"},
{path="hbayesdm/common/stan_files/**/*"}
]
[tool.poetry.dependencies]
python = ">=3.6.1"
numpy = "^1.19.4"
scipy = "^1.5.4"
pandas = "^1.1.5"
pystan = "^2.19.1"
matplotlib = "^3.3.3"
arviz = "^0.10.0"
importlib-metadata = "^3.3.0"
[tool.poetry.dev-dependencies]
autopep8 = "^1.5.4"
pylint = "^2.6.0"
pytest = "^6.1.2"
flake8 = "^3.8.4"
pytest-rerunfailures = "^9.1.1"
Sphinx = "^3.3.1"
sphinx-autodoc-typehints = "^1.11.1"
sphinx-rtd-theme = "^0.5.0"
mypy = "^0.790"
[[tool.poetry.source]]
name = "test"
url = "https://test.pypi.org/legacy/"
secondary = true
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"