blob: 99066ffbe0b8d6703f70dc0fb956b9a3f0934d23 (
plain)
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
|
[metadata]
name = ioctl
version = 0.2.2
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.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: System :: Operating System Kernels :: Linux
url = https://github.com/FFY00/python-ioctl
[options]
packages = find:
python_requires = >=3.6, <4
[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 = ioctl
default_section = THIRDPARTY
|