-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
pyproject.toml
56 lines (50 loc) · 1.24 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
55
56
[tool.poetry]
name = "pystan"
version = "3.10.0"
description = "Python interface to Stan, a package for Bayesian inference"
authors = [
"Allen Riddell <[email protected]>",
"Ari Hartikainen <[email protected]>",
"Matthew Carter <[email protected]>",
]
license = "ISC"
readme = "README.rst"
homepage = "https://mc-stan.org"
repository = "https://github.com/stan-dev/pystan"
documentation = "https://pystan.readthedocs.io"
packages = [
{ include = "stan" },
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: ISC License (ISCL)",
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.6"
httpstan = "~4.13"
pysimdjson = ">=5.0.2,<7"
numpy = ">=1.19"
clikit = "^0.6"
setuptools = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-asyncio = "^0.18.3"
pandas = ">=1.0,<3"
black = "22.6.0"
isort = "^5.9"
mypy = "0.982"
types-setuptools = "^57.4"
# documentation
# NOTE: when changing these, update docs-requirements.txt
sphinx = "^7.2"
sphinx-rtd-theme = "^2.0"
[tool.black]
line-length = 119
[tool.isort]
profile = "black"
combine_as_imports = true
known_first_party = "stan,tests"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"