-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
88 lines (77 loc) · 1.7 KB
/
setup.cfg
File metadata and controls
88 lines (77 loc) · 1.7 KB
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
[metadata]
name = procman
description = Console tool for running multiple external processes and multiplexing their output
url = https://github.com/sarnold/procman
author = Stephen Arnold
author_email = nerdboy@gentoo.org
long_description = file: README.rst
long_description_content_type = text/x-rst
license_expression = LGPL-2.1-or-later
license_files = COPYING
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python :: 3
Environment :: Console
Topic :: Software Development
Topic :: Software Development :: Testing
[options]
python_requires = >= 3.8
setup_requires =
setuptools_scm[toml]
install_requires =
honcho @ git+https://github.com/VCTLabs/honcho.git@v2.0.0.2#egg=honcho
importlib_resources; python_version < '3.10'
munch
ruamel.yaml>=0.16.6
packages =
procman
procman.examples
[options.package_data]
procman.examples =
*.py
*.sh
[options.entry_points]
console_scripts =
procman = procman.procman:main
# extra deps are included here mainly for local/venv installs using pip
# otherwise deps are handled via tox, ci config files or pkg managers
[options.extras_require]
doc =
sphinx
sphinx_git
sphinx_rtd_theme<3.0
sphinxcontrib-apidoc
myst-parser
test =
pytest
pytest-cov
cov =
coverage[toml]
coverage_python_version
examples =
flask
redis
all =
%(cov)s
%(doc)s
%(test)s
%(examples)s
[check]
metadata = true
restructuredtext = true
strict = false
[check-manifest]
ignore =
.gitattributes
.gitignore
.pre-commit-config.yaml
[flake8]
exclude =
.git,
__pycache__,
build,
dist,
docs,
tests
max-line-length = 90