-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
50 lines (44 loc) · 1.04 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
# This file is part of DUNEdn by M. Rossi
[metadata]
name = dunedn
version = 2.0.0
author = M. Rossi
author_email = [email protected]
description = ProtoDUNE raw data denoising with DL
long_description = file: README.md
long_description_content_type = text/markdown
license_files = LICENSE
url = https://github.com/marcorossi5/DUNEdn.git
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: Unix
Topic :: Scientific/Engineering :: Physics
[options]
zip_safe = False
package_dir=
=src
packages=find:
python_requires = >=3.9
install_requires =
tqdm==4.64.0
numpy>=1.22
pyyaml==6.0.0
torch==1.11.0
torchvision==0.12.0
onnx==1.11.0
onnxruntime==1.11.1
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
dunedn = dunedn.scripts.dunedn:main
[options.extras_require]
docs =
sphinx>=4.5.0
sphinx-rtd-theme>=1.0.0
sphinxcontrib-napoleon>=0.7
examples =
jupyter==1.0.0
matplotlib==3.5.2
pandas==1.4.2