forked from NERSC/timemory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (88 loc) · 2.01 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
83
84
85
86
87
88
89
90
[metadata]
name = timemory
url = http://timemory.readthedocs.io
download_url = http://github.com/NERSC/timemory.git
author = Jonathan R. Madsen
author_email = [email protected]
maintainer = Jonathan R. Madsen
maintainer_email = [email protected]
license = MIT
description = Suite of performance analysis tools and toolkit for building performance analysis tools
keywords =
performance
profiling
sampling
hardware counters
pybind11
timing
memory
gpu
cupti
cuda
papi
gperftools
craypat
ompt
likwid
roofline
TAU
vtune
classifiers =
Development Status :: 5 - Production/Stable
Environment :: GPU
Environment :: GPU :: NVIDIA CUDA
Intended Audience :: Developers
Intended Audience :: Science/Research
Natural Language :: English
License :: OSI Approved :: MIT License
Operating System :: MacOS
Operating System :: Microsoft :: Windows :: Windows 10
Operating System :: POSIX :: Linux
Operating System :: POSIX :: BSD
Operating System :: Unix
Programming Language :: C++
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Software Development :: Bug Tracking
Topic :: Software Development :: Testing
Topic :: Software Development :: Quality Assurance
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Logging
Topic :: System :: Monitoring
Topic :: Utilities
[options]
packages = timemory
zip_safe = false
include_package_data = false
[flake8]
ignore =
F403,
F405,
W503,
E203,
N801,
N802,
N804,
N806,
N812,
exclude =
.git,
__pycache__,
docs,
old,
build,
dist,
pybind11,
_skbuild,
external,
build-*,
scripts,
.misc,
pyctest-runner.py,
spack,
max-complexity = 40
max-line-length = 90