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._version.__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 = austin@dartmouth.edu
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
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
PyYAML
pyout
[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
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
[egg_info]
tag_build =
tag_date = 0
|