-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
82 lines (74 loc) · 1.79 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
80
81
82
# SPDX-FileCopyrightText: © 2019 The usbmon-tools Authors
# SPDX-License-Identifier: Apache-2.0
[metadata]
name = usbmon-tools
description = usbmon processing utilities (for Linux and Windows captures).
long_description = file: README.md
long_description_content_type = text/markdown
author = Diego Elio Pettenò
author_email = [email protected]
license = Apache-2.0
license_file = LICENSE
license_files =
AUTHORS
CONTRIBUTING.md
LICENSE
LICENSES/*
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: System :: Hardware
[options]
packages = find:
install_requires =
click
construct>=2.9
hexdump
python-pcapng>=1.0
python_requires = ~= 3.7
[options.extras_require]
dev =
absl-py
mypy
pre-commit
pytest>=3.6.0
pytest-mypy
pytest-timeout>=1.3.0
setuptools_scm
[options.package_data]
* = py.typed
[options.entry_points]
console_scripts =
usbmon-capture_stats = usbmon.tools.capture_stats:main
usbmon-chatter_cp210x = usbmon.tools.chatter_cp210x:main
usbmon-chatter_cp2110 = usbmon.tools.chatter_cp2110:main
usbmon-chatter_hid = usbmon.tools.chatter_hid:main
usbmon_pcapng2base64 = usbmon.tools.pcapng2base64:main
usbmon-pcapng2text = usbmon.tools.pcapng2text:main
[options.packages.find]
exclude =
*.tests
*.tests.*
tests.*
tests
[tool:pytest]
addopts =
--color=yes
--ignore=setup.py
-r a
norecursedirs =
.git
dist
build
venv*
.env
timeout = 120
[flake8]
max-line-length = 88
# Ignore long line errors, black takes care of them.
extend-ignore = E501