blob: 13e62d84cf992f3d2cab8063bb55178507a2ea93 (
plain)
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
|
[metadata]
name = munin-plot
version = 1.8
description = Alternative web front-end for Munin
long_description = file: README.md
long_description_content_type = text/markdown
author = Arthur de Jong
author_email = arthur@arthurdejong.org
url = https://arthurdejong.org/munin-plot/
license = MIT
license_files = COPYING
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Topic :: System :: Monitoring
Topic :: System :: Networking :: Monitoring
[options]
packages = muninplot
python_requires = >=3
[options.package_data]
muninplot =
static/*.*
[sdist]
owner=root
group=root
[flake8]
ignore =
B902 # catching Exception is fine
P103 # we have no external dependencies in setup.cfg
PIN103 # we have no external dependencies in setup.cfg
W504 # we put the binary operator on the preceding line
max-line-length = 120
[isort]
lines_after_imports = 2
multi_line_output = 4
[codespell]
skip = *.sh,*.egg-info,ChangeLog,./.git,./.tox,./build,./coverage,./node_modules,./muninplot/static,package-lock.json
|