File: setup.cfg

package info (click to toggle)
topplot 0.2.2%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,100 kB
  • sloc: python: 3,420; makefile: 59; sh: 10
file content (98 lines) | stat: -rw-r--r-- 2,439 bytes parent folder | download | duplicates (2)
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
89
90
91
92
93
94
95
96
97
98
[metadata]
name = topplot
version = 0.2.1
author = Jonathan Sambrook
author_email = ebardie@gmail.com
url = https://gitlab.com/ebardie/topplot
description = Munge top logs in to graph
long_description = file: README.md
long_description_content_type = text/markdown
license = GPLv3
license_file = LICENCE
platform = Linux, Windows
keywords = top, graphs
classifiers =
        Programming Language :: Python :: 3
        License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
        Operating System :: OS Independent
        Development Status :: 3 - Alpha
        Environment :: X11 Applications
        Intended Audience :: System Administrators
        Intended Audience :: Developers
        Operating System :: POSIX
        Operating System :: POSIX :: Linux
        Topic :: System :: Logging
        Topic :: System :: Monitoring
project_urls = 
    Bug Tracker = https://gitlab.com/ebardie/topplot/issues
    Changelog = https://gitlab.com/ebardie/topplot/blob/master/RELEASE.md

[options]
#zip_safe = false
include_package_data = true
python_requires = >= 3.9
packages=find:
setup_requires =
    pip >= 21
    setuptools
    
install_requires =
    pip >= 21
    setuptools
    matplotlib >= 3.3.3
    mplcursors
    pandas
    screeninfo

[options.entry_points]
gui_scripts = 
    topplot = topplot.__main__:main

[bdist_wheel]
universal = true

[sdist]
formats = zip, gztar

#[coverage:report]
#show_missing = true
#exclude_lines =
#    pragma: no cover
#    if False
#    # @abc.abstractmethod
#    # @abc.abstractproperty
#    # raise NotImplementedError
#    # return NotImplemented
#    # except ImportError
#    # raise MemoryError
#    # if __name__ == .__main__.:
#    # if typing.TYPE_CHECKING:
#
#[green]
#file-pattern = test_*.py
#verbose = 2
#no-skip-report = true
#quiet-stdout = true
#run-coverage = true
#
#[pydocstyle]
#match-dir = (?!tests)(?!resources)(?!docs)[^\.].*
#match = (?!test)(?!setup)[^\._].*\.py
#inherit = false
#ignore = D200, D203, D213, D406, D407   # Google conventions
#    
#[flake8]
#max-line-length = 99
#doctests = True
#exclude =  .git, .eggs, __pycache__, tests/, docs/, build/, dist/
#
#[mypy]
#disallow_any_decorated = true
#disallow_any_generics = true
#disallow_any_unimported = false
#disallow_subclassing_any = false
#disallow_untyped_calls = true
#disallow_untyped_defs = true
#ignore_missing_imports = true
#warn_unused_ignores = true
#warn_return_any = true