-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
74 lines (69 loc) · 1.64 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
[metadata]
name = pcrunner
description = A module for running Passive Nagios/Icinga Checks
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/maartenq/pcrunner
author = Maarten
author_email = [email protected]
license = ISC
license_file = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: System Administrators
License :: OSI Approved :: ISC License (ISCL)
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: POSIX
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Documentation :: Sphinx
Topic :: System :: Monitoring
Topic :: System :: Systems Administration
keywords = pcrunner
project_urls =
Bug Tracker = https://github.com/maartenq/pcrunner/issues
Changelog = https://github.com/maartenq/pcrunner/blob/main/HISTORY.rst
use_scm_version = True,
[options]
packages = find:
install_requires =
PyYAML
python_requires = >=3.8
include_package_data = True
package_dir =
= src
scripts =
src/pcrunner/scripts/check_dummy.py
src/pcrunner/scripts/run_check.py
setup_requires =
setuptools-scm
test_suite = tests
zip_safe = False
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
pcrunner = pcrunner.main:main
[options.extras_require]
dev =
Sphinx
black
build
coverage
pre-commit
pytest
pytest-cov
responses
sphinx-rtd-theme
tox
twine
docs =
Sphinx
sphinx-rtd-theme
test =
pytest
pytest-cov
[bdist_wheel]
universal = 1