-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
79 lines (70 loc) · 1.81 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
75
76
77
78
79
[metadata]
name = tslogs
version = file: tslogs/_version.txt
author = Ashutosh Varma
author-email = [email protected]
home-page = https://github.com/ashutoshvarma/tslogs
description = ThrottleStop logs parsers and visualizer.
long-description = file: README.md
long_description_content_type = text/markdown
license = MIT
license-file = COPYING
platform = any
keywords = throttlestop, logs, convert, parse, graph, visualizer
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: OS Independent
project_urls =
Bug Tracker = https://github.com/ashutoshvarma/tslogs/issues
# Changelog = https://tslogs.readthedocs.io/en/latest/changes.html
# Documentation = https://tslogs.readthedocs.io/en/latest/
[options]
zip_safe = true
include_package_data = true
python_requires = >= 3.6
packages =
tslogs
test_suite = tests
setup_requires =
setuptools >=38.3.0 # version with most `setup.cfg` bugfixes
install_requires =
matplotlib >=3.3.2
colorama>=0.4.3
[options.extras_require]
doc =
sphinx
test =
codecov
coverage
pytest
pytest-cov
tox
all =
%(doc)s
%(test)s
[options.entry_points]
console_scripts =
tslogs = tslogs.cli:main
[sdist]
formats = zip
[bdist_wheel]
universal = 1
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
[flake8]
max-line-length = 88
extend-ignore = E203
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/, .venv
[tool:pytest]
addopts = tests