-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
60 lines (55 loc) · 1.25 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
[metadata]
name = perfcapture
version = 0.0.1
description = Run benchmark workloads and capture performance metrics
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/zarr-developers/perfcapture
maintainer = Jack Kelly
maintainer_email = [email protected]
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Topic :: System :: Benchmark
Typing :: Typed
project_urls =
Source = https://github.com/zarr-developers/perfcapture
[options]
zip_safe = False
package_dir=
=src
packages = find:
install_requires =
numpy
typer >= 0.9
psutil
pandas
python_requires = >=3.8
[options.packages.find]
where=src
[options.extras_require]
dev =
mypy
ruff
testing =
pytest
pytest-cov
pytest-mypy
pytest-ruff
docs =
# upstream
sphinx >= 3.5
# workaround for sphinx/sphinx-doc#11662
sphinx < 8.1.4
jaraco.packaging >= 9.3
rst.linker >= 1.9
furo
sphinx-lint