-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.cfg
56 lines (46 loc) · 1.13 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
[metadata]
name = pyk4a
version = 1.5.0
description-file = README.md
description = Python wrapper over Azure Kinect SDK
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/etiennedub/pyk4a/
classifiers =
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Development Status :: 4 - Beta
Topic :: Multimedia :: Video :: Capture
Programming Language :: Python :: 3
Programming Language :: C
[options]
packages = pyk4a
python_requires = >= 3.4
install_requires =
numpy
[options.package_data]
pyk4a = py.typed
[flake8]
max-line-length = 120
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
E501,
[isort]
line_length=120
include_trailing_comma=True
multi_line_output=3
force_grid_wrap=0
combine_as_imports=True
lines_after_imports=2
known_first_party=pyk4a,k4a_module,helpers
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-cv2.*]
ignore_missing_imports = True
[mypy-matplotlib.*]
ignore_missing_imports = True
[mypy-mpl_toolkits]
ignore_missing_imports = True
[mypy-k4a_module]
ignore_missing_imports = True