forked from cappelletto/bayesian-inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "bnn_inference"
version = "0.1.4"
description = "Bayesian NN training/inference engine to learn mappings between latent representations of low-resolution maps and high-resolution observations"
license = { file = "LICENSE" }
readme = "README.md"
authors = [{ name = "Jose Cappelleto", email = "[email protected]" }]
maintainers = [
{ name = "Jose Cappelleto", email = "[email protected]" },
{ name = "Miquel Massot-Campos", email = "[email protected]" },
]
dependencies = [
"numpy>=1.19.0",
"jinja2>=3.1.2",
"pandas>=1.4.3",
"torch>=2.0.0",
"torchvision>=0.15.1",
"networkx>=3.1.0",
"scikit-learn>= 1.2.2",
"Pillow>=9.1.1",
"requests==2.31.0",
"scipy>=1.5.0",
"typer>=0.7.0",
"pyyaml>=6.0.1",
"pyproj==3.6.0",
"seaborn==0.12.2",
"sympy==1.12",
"blitz-bayesian-pytorch==0.2.7",
]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[project.scripts]
bnn_inference = "bnn_inference.cli:main"