-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
74 lines (65 loc) · 1.33 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
[metadata]
name = uhid
version = 0.0.1
long_description = file: README.md
long_description_content_type = text/markdown
author = Filipe Laíns
author_email = lains@archlinux.org
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
Topic :: System :: Operating System Kernels :: Linux
project_urls =
homepage = https://github.com/FFY00/python-uhid
[options]
packages = find:
package_dir =
=src
python_requires = >= 3.7
[options.packages.find]
where = src
[options.extras_require]
trio =
trio
test =
pytest
pytest-timeout
pytest-cov
pytest-asyncio
pytest-trio
ioctl>=0.2.1
docs =
furo>=2020.11.19b18
sphinx~=3.0
sphinx-autodoc-typehints>=1.10
sphinxcontrib-trio>=1.1.0
[flake8]
min-python-version = 3.7.0
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 = uhid
default_section = THIRDPARTY
[coverage:paths]
source =
src
*/site-packages
*\site-packages
[coverage:run]
omit =
setup.py
branch = true
parallel = true
dynamic_context = test_function
[coverage:html]
show_contexts = true