-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
82 lines (65 loc) · 1.61 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
82
[metadata]
name = cometr
version = 0.0.1
description = Gallery of metrics to compare volumetric data
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/rosalindfranklininstitute/HDRUK-CoMeTR
project_urls =
Source=https://github.com/rosalindfranklininstitute/HDRUK-CoMeTR
Tracker=https://github.com/rosalindfranklininstitute/HDRUK-CoMeTR/issues
author = Dimitrios Bellos, Netochukwu Onyiaji, Dolapo Adebo
author_email = [email protected]
license = Apache 2.0
license_file = LICENSE
classifiers =
Intended Audience :: Developers
License :: OSI Approved :: Apache 2.0 License
Operating System :: POSIX
Topic :: Utilities
Programming Language :: Python :: 3
platforms =
linux
[options]
packages = find:
python_requires = ==3.*
install_requires=
numpy
h5py
mrcfile
pyyaml
beartype
psutil
scipy
scikit-learn
torch
torchvision
torchmetrics==0.11.4
include_package_data = True
[options.extras_require]
test =
pytest
pytest-cov
mock
build_docs =
docutils
sphinx_rtd_theme
sphinx
sphinxcontrib-napoleon
sphinx-argparse
dev =
%(test)s
%(build_docs)s
[options.entry_points]
console_scripts=
cometr.mse=cometr.global_metrics.MSE:main
cometr.mae=cometr.global_metrics.MAE:main
cometr.psnr=cometr.global_metrics.PSNR:main
cometr.ssim=cometr.global_metrics.SSIM:main
cometr.ae=cometr.local_metrics.AE:main
cometr.se=cometr.local_metrics.SE:main
[aliases]
test = pytest
[tool:pytest]
testpaths = tests
addopts = --cov=cometr --doctest-modules