This repository was archived by the owner on Dec 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.cfg
More file actions
80 lines (71 loc) · 2.03 KB
/
Copy pathsetup.cfg
File metadata and controls
80 lines (71 loc) · 2.03 KB
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
75
76
77
78
79
80
[metadata]
name = zoloto
version = 0.9.0
url = https://github.com/RealOrangeOne/zoloto
author = Jake Howard
long_description = file: README.md
description = A fiducial marker system powered by OpenCV - Supports ArUco and April
long_description_content_type = text/markdown
license = BSD
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Image Recognition
Topic :: Software Development
Typing :: Typed
project_urls =
Changelog = https://github.com/RealOrangeOne/zoloto/releases
Documentation = https://zoloto.readthedocs.io/
Source = https://github.com/RealOrangeOne/zoloto
Issues = https://github.com/RealOrangeOne/zoloto/issues
[options]
python_requires = >=3.8
packages = find:
install_requires =
cached-property >= 1.5
pyquaternion >= 0.9.2
numpy >= 1.22
[options.entry_points]
console_scripts =
zoloto = zoloto.cli:main
[options.package_data]
zoloto = py.typed
[options.extras_require]
rpi = picamera[array] >= 1.13
opencv = opencv-contrib-python >=4.0,<4.6
cli =
Pillow
tqdm
[mypy]
mypy_path = stubs
no_implicit_optional = True
warn_unused_ignores = True
strict_optional = True
check_untyped_defs = True
ignore_missing_imports = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
show_error_codes = True
enable_error_code = ignore-without-code
plugins = numpy.typing.mypy_plugin
[isort]
float_to_top=true
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
[flake8]
extend_ignore=E128,E501