-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsetup.cfg
More file actions
49 lines (46 loc) · 1.17 KB
/
setup.cfg
File metadata and controls
49 lines (46 loc) · 1.17 KB
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
[metadata]
name = pytorch-ood
project_name = pytorch-ood
author = Konstantin Kirchheim
contact = konstantin.kirchheim@ovgu.de
keywords = OOD, PyTorch, Out-of-Distribution Detection
version = attr: pytorch_ood.__version__
url = https://github.com/kkirchheim/pytorch-ood
project_urls =
Bug Tracker = https://github.com/kkirchheim/pytorch-ood/issues
repository = https://github.com/kkirchheim/pytorch-ood
description = A Library for Out-of-Distribution Detection with PyTorch
long_description = file: README.rst
license = Apache 2.0
license_file = LICENSE
long_description_content_type = text/x-rst
description_file = README.rst
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
[options]
# packages = pytorch_ood
packages=find:
package_dir =
=src
python_requires = >=3.8
install_requires =
torch>=1.7.0
torchvision>=0.12.0
torchmetrics>=1.0.0
scipy>=1.7.0
numpy>=1.23.0
[options.packages.find]
where = src
[tool:pytest]
python_files = tests/*
log_cli = True
markers =
slow
addopts =
--durations=0
--strict-markers
--doctest-modules
filterwarnings =
ignore::DeprecationWarning
ignore::UserWarning