-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
47 lines (42 loc) · 875 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
45
46
47
[metadata]
name=nvmitten
version = attr: nvmitten.__VERSION__
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
author = A. Cheng, NVIDIA
author_email = [email protected]
description = MLPerf Inference Test Bench from NVIDIA
license = Apache 2.0 License
license_files = LICENSE
[options]
zip_safe = False
package_dir=
=src
packages=find:
platforms = any
include_package_data = True
python_requires = >=3.8
install_requires =
graphlib_backport >=1.0.3;python_version<'3.9'
requests >=2.28.1
tqdm >=4.65.0
numpy >=1.22.0, <1.24.0
GitPython >=3.1.31
pandas
opencv-python
pybind11
onnx
[options.packages.find]
where=src
[bdist_wheel]
universal = 1
[aliases]
test=pytest
[options.extras_require]
test =
pytest >= 6.2.4
pycodestyle
pytest-cov
pylint
pyfakefs
mock