forked from stan-dev/pystan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.26 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
57
58
[tool.poetry]
name = "pystan"
version = "3.5.0"
description = "Python interface to Stan, a package for Bayesian inference"
authors = [
"Allen Riddell <riddella@indiana.edu>",
"Ari Hartikainen <ahartikainen@users.noreply.github.com>",
"Matthew Carter <m.j.carter2@liverpool.ac.uk>",
]
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.8"
aiohttp = "^3.6"
httpstan = "~4.8"
pysimdjson = "^5.0.2"
numpy = "^1.19"
clikit = "^0.6"
setuptools = "*"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-asyncio = "^0.18.3"
pandas = "^1.0"
autoflake = "^1.4"
black = "22.6.0"
isort = "^5.9"
mypy = "0.982"
types-setuptools = "^57.4"
flake8 = "^4.0"
# documentation
# NOTE: when changing these, update docs-requirements.txt
sphinx = "^4.2"
sphinx-rtd-theme = "^1.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"