-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
55 lines (48 loc) · 1.31 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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "kulprit"
readme = "README.md"
maintainers = [
{ name = "Osvaldo Martin", email = "[email protected]" },
{ name = "Tomás Capretto", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
description = "Kullback-Leibler projections for Bayesian model selection."
dependencies = [
"arviz>=0.17.1",
"bambi>=0.12.0",
"scikit-learn>=1.0.2",
"numba>=0.56.0",]
[tool.flit.module]
name = "kulprit"
[project.urls]
source = "https://github.com/bambinos/kulprit"
tracker = "https://github.com/bambinos/kulprit/issues"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
include_trailing_comma = true
use_parentheses = true
multi_line_output = 3
line_length = 100
[tool.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
testpaths = [
"tests",
]