-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.cfg
57 lines (49 loc) · 1.11 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
[metadata]
name = hid-parser
version = 0.0.3
description = Typed pure Python library to parse HID report descriptors
long_description = file: README.md
long_description_content_type = text/markdown
author = Filipe Laíns
author_email = [email protected]
license = MIT
license_file = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
url = https://github.com/usb-tools/python-hid-parser
[options]
packages = find:
python_requires = >=3.7, <4
install_requires =
typing-extensions; python_version < '3.8'
[options.extras_require]
test =
pytest
pytest-cov
hypothesis
[flake8]
max-line-length = 127
max-complexity = 10
per-file-ignores =
test_parse.py: E262
test_print.py: E262
[mypy]
ignore_missing_imports = True
strict = True
[isort]
line_length = 127
lines_between_types = 1
lines_after_imports = 2
known_first_party = hid_parser
default_section = THIRDPARTY
[coverage:run]
omit =
setup.py
[coverage:paths]
source =
src
[coverage:html]
show_contexts = true