-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
92 lines (84 loc) · 1.78 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[metadata]
name = pymavswarm
version = 1.2.0
description = Python library used to communicate with multiple UAS simultaneously using MAVLink
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/unl-nimbus-lab/pymavswarm
author = Evan Palmer
author_email = [email protected]
license = GPLv3
platforms = any
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
project_urls =
Source = https://github.com/unl-nimbus-lab/pymavswarm
[options]
packages = find:
python_requires = >=3.10
install_requires =
pymavlink>=2.3.3
monotonic>=1.6
pyserial>=3.0
pandas>=1.4.3
numpy>=1.23.1
PyYAML>=6.0
zip_safe = true
[options.packages.find]
include = pymavswarm, pymavswarm.*
[flake8]
max-line-length = 88
exclude = .tox,*.egg,build,temp,devel,.mypy_cache,__pycache__
select = E,W,F
doctests = True
verbose = 2
ignore =
E203
W503
per-file-ignores =
pymavswarm/handlers/message_receivers.py:F811
pymavswarm/tests/*:F401
__init__.py: F401
[codespell]
ignore-words-list =
acro
ahrs
bynumber
compid
eeprom
hdop
horiz
mavlink
mavpackettype
mavswarm
mavutil
pydocstyle
pymavlink
pymavswarm
redef
rtype
systemid
uart
vdop
ignore-regex = https://([\w/\.])+
[isort]
profile=black
src_paths=pymavswarm
[pydocstyle]
ignore = D100,D203,D405,D212,D104,D403
[coverage:report]
ignore_errors = False
show_missing = True
exclude_lines =
pragma: no-cover
pass
[coverage:run]
branch = true
parallel = true
source = pymavswarm