-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
99 lines (90 loc) · 2.2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[project]
name = "conjugate-models"
version = "0.12.0"
description = "Bayesian Conjugate Models in Python"
authors = [{ name = "Will Dean", email = "[email protected]" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = "MIT"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"matplotlib",
"numpy",
"scipy",
"packaging",
]
[project.urls]
Homepage = "https://williambdean.github.io/conjugate/"
Repository = "https://github.com/williambdean/conjugate"
Documentation = "https://williambdean.github.io/conjugate/"
[dependency-groups]
dev = [
"pytest>=7.3.2,<8",
"pytest-cov>=4.1.0,<5",
"pandas",
"pypika>=0.48.9,<0.49",
"pymc>=5.5.0,<6",
"ipython==8.10.0",
"scikit-learn>=1.3.2,<2",
"tox>=4.11.4,<5",
"pytest-mpl>=0.16.1,<0.17",
]
docs = [
"mkdocs>=1.4.3,<2",
"mkdocs-material>=9.1.17,<10",
"mkdocstrings[python]>=0.23.0",
]
[tool.uv]
default-groups = [
"dev",
"docs",
]
[tool.hatch.build.targets.sdist]
include = [
"conjugate",
"conjugate/py.typed",
]
[tool.hatch.build.targets.wheel]
include = [
"conjugate",
"conjugate/py.typed",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = "--mpl --mpl-baseline-path=tests/example-plots --cov=conjugate --cov-report=xml --cov-report=term-missing"
[tool.tox]
legacy_tox_ini = """
[tox]
min_version = 4.0
isolated_build = true
env_list =
py313
py312
py311
py310
[testenv]
deps =
pytest
pytest-cov
pytest-mpl
pypika
commands = pytest tests
"""