-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
44 lines (40 loc) · 896 Bytes
/
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
[metadata]
name = stereonet
description = PyTorch Lightning implementation of StereoNet
author = Andrew Stewart
license = The Unlicense
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
[options]
packages =
stereonet
install_requires =
torch>=2.0.0
torchvision>=0.15.1
torchaudio>=2.0.1
tensorboard>=2.12.1
lightning>=2.0.1
scikit_image>=0.20.0
setuptools>=67.6.1
hydra-core>=1.3.2
opencv-python>=4.7.0.72
matplotlib>=3.7.1
python_requires = >=3.8
package_dir =
=src
zip_safe = no
[options.extras_require]
testing =
pytest>=7.2.2
pytest-cov>=4.0.0
mypy>=1.1.1
flake8>=6.0.0
tox>=4.4.8
[options.package_data]
stereonet = py.typed
[flake8]
max-line-length = 240