forked from bambinos/bambi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (59 loc) · 1.51 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
59
60
61
62
63
64
65
66
67
68
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
[tool.setuptools_scm]
[project]
name = "bambi"
description = "BAyesian Model Building Interface in Python"
requires-python = ">=3.10,<3.13"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
maintainers = [
{ name = "Tomás Capretto", email = "[email protected]" },
{ name = "Osvaldo Martin", email = "[email protected]" },
{ name = "Gabriel Stechschulte", email = "[email protected]" },
{ name = "Ravin Kumar", email = "[email protected]" },
]
dependencies = [
"arviz>=0.12.0",
"formulae>=0.5.3",
"graphviz",
"pandas>=1.0.0",
"pymc>=5.16.1",
]
[project.optional-dependencies]
dev = [
"black==24.3.0",
"ipython>=5.8.0,!=8.7.0",
"pre-commit>=2.19",
"pylint==3.1.0",
"pytest-cov>=2.6.1",
"pytest>=4.4.0",
"quartodoc==0.6.1",
"seaborn>=0.9.0",
]
jax = [
"bayeux-ml>=0.1.13",
]
[project.urls]
homepage = "https://bambinos.github.io/bambi"
documentation = "https://bambinos.github.io/bambi"
repository = "https://github.com/bambinos/bambi"
changelog = "https://github.com/bambinos/bambi/blob/main/docs/CHANGELOG.md"
[tool.setuptools]
packages = [
"bambi",
"bambi.backend",
"bambi.data",
"bambi.defaults",
"bambi.families",
"bambi.interpret",
"bambi.priors",
"bambi.terms",
]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.pytest.ini_options]
addopts = "-p no:warnings"