-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
39 lines (34 loc) · 1013 Bytes
/
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
[project]
name = "posteriors"
version = "0.0.5"
description = "Uncertainty quantification with PyTorch"
readme = "README.md"
requires-python =">=3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "Sam Duffield", email = "[email protected]"},
]
keywords = ["pytorch", "uncertainty"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: Apache Software License",
]
dependencies = ["torch>=2.0.0", "torchopt>=0.7.3", "optree>=0.10.0"]
[project.optional-dependencies]
test = ["pre-commit", "pytest-cov", "pytest-xdist", "ruff"]
docs = ["mkdocs", "mkdocs-material", "mkdocstrings[python]"]
[tool.setuptools]
packages = [
"posteriors",
"posteriors.ekf",
"posteriors.laplace",
"posteriors.sgmcmc",
"posteriors.vi",
]
[tool.ruff]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F821", "E402"]
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"