forked from aleximmer/Laplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
82 lines (72 loc) · 2.23 KB
/
setup.cfg
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
###############################################################################
# Main library #
###############################################################################
[metadata]
name = laplace-torch
version = 0.2
author = Alex Immer, Runa Eschenhagen, Agustinus Kristiadi, Erik Daxberger
url = https://github.com/aleximmer/Laplace
project_urls =
Bug Tracker = https://github.com/aleximmer/Laplace/issues
description = laplace - Laplace approximations for deep learning
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
# Add all kinds of additional classifiers as defined under
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
zip_safe = False
packages = find:
setup_requires =
setuptools_scm
# Dependencies of the project (semicolon/line-separated):
install_requires =
torch >= 2.0
torchvision
torchaudio
backpack-for-pytorch
asdfghjkl
asdl @ git+https://github.com/kazukiosawa/asdl
torchmetrics
opt_einsum
curvlinops-for-pytorch @ git+https://github.com/f-dangel/curvlinops
python_requires = >=3.9
[options.packages.find]
exclude = tests*
[options.package_data]
laplace =
py.typed
###############################################################################
# Development dependencies #
###############################################################################
[options.extras_require]
# Dependencies needed for development
dev =
ruff
%(tests)s
%(docs)s
# Dependencies needed to run the tests
tests =
pytest
pytest-cov
pytest-mock
coveralls
scipy
# Dependencies needed to build/view the documentation
docs =
matplotlib
pdoc3
all =
laplace-torch[dev]
laplace-torch[tests]
laplace-torch[docs]