-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (40 loc) · 959 Bytes
/
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
[metadata]
name = lshid
version = 0.2.2
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.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: System :: Operating System Kernels :: Linux
url = https://github.com/FFY00/lshid
[options]
packages = find:
python_requires = >=3.6, <4
install_requires =
ioctl
hid-parser~=0.0.2
[options.extras_require]
filter =
parse
[options.entry_points]
console_scripts =
lshid = lshid.__main__:entrypoint
[flake8]
max-line-length = 127
max-complexity = 10
[mypy]
ignore_missing_imports = True
strict = True
[isort]
line_length = 127
lines_between_types = 1
lines_after_imports = 2
known_first_party = lshid
default_section = THIRDPARTY