Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: 869dc812190e16b74828a9e5b1e4484700cf91f6 (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
[metadata]
name = munin-plot
version = 0.1
description = Alternative web front-end for Munin
long_description = file: README
author = Arthur de Jong
author_email = arthur@arthurdejong.org
url = https://arthurdejong.org/munin-plot/
license = MIT
license_file = 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]
include_package_data = true
packages = find:

[sdist]
owner=root
group=root

[bdist_wheel]
universal=1

[flake8]
ignore =
  D100,D103  # no extensive docstrings yet
  P103  # no exrernal dependencies
max-line-length = 120

[isort]
lines_after_imports = 2
multi_line_output = 4