-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (34 loc) · 1.04 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "noisebase"
description = "Datasets and benchmarks for neural Monte Carlo denoising"
dependencies = [
"torch",
"pyfvvdp==1.2.0",
"zarr>=2",
"pytorch-msssim",
"hydra-core",
"requests",
"tqdm"
]
authors = [{name = "Martin Bálint", email = "[email protected]"}]
readme = "README.md"
keywords = ["denoising", "Monte Carlo", "MC", "neural"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Environment :: GPU",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[project.scripts]
nb-save-reference = "noisebase:scripts.nb_save_reference"
nb-compute-metrics = "noisebase:scripts.nb_compute_metrics"
nb-result-table = "noisebase:scripts.nb_result_table"
nb-download = "noisebase:scripts.nb_download"
[project.urls]
Documentation = "https://balint.io/noisebase"
Repository = "https://github.com/balintio/noisebase.git"