-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
82 lines (73 loc) · 2.1 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
[metadata]
name = con-duct
version = attr:con_duct.__main__.__version__
description = Runs a not-so-simple command and collects resource usage metrics
long_description = file:README.md
long_description_content_type = text/markdown
author = Austin Macdonald
author_email = [email protected]
license = MIT
license_files = LICENSE
url = https://github.com/con/duct/
keywords =
command-line
cpu
memory
metrics
output-capture
provenance
time
usage
classifiers =
Development Status :: 3 - Alpha
# Development Status :: 4 - Beta
# Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
License :: OSI Approved :: MIT License
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Intended Audience :: System Administrators
Topic :: System :: Systems Administration
project_urls =
Source Code = https://github.com/con/duct/
Bug Tracker = https://github.com/con/duct/issues
[options]
packages = find_namespace:
package_dir =
=src
include_package_data = True
python_requires = >= 3.9
[options.packages.find]
where = src
[options.extras_require]
all =
matplotlib
[options.entry_points]
console_scripts =
duct = con_duct.__main__:main
con-duct = con_duct.suite.main:main
[mypy]
allow_incomplete_defs = False
allow_untyped_defs = False
ignore_missing_imports = False
# <https://github.com/python/mypy/issues/7773>:
no_implicit_optional = True
implicit_reexport = False
local_partial_types = True
pretty = True
show_error_codes = True
show_traceback = True
strict_equality = True
warn_redundant_casts = True
warn_return_any = True
warn_unreachable = True