generated from pollen-robotics/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
65 lines (53 loc) · 1.38 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
[metadata]
name = gst-signalling
version = 1.1.0
author = Pollen Robotics
author_email = [email protected]
url = https://github.com/pollen-robotics/gst-signalling-py
description = Python implementation of the gstreamer signalling protocol
long_description = file: README.md
long_description_content_type = text/markdown
[options]
packages = find:
zip_safe = True
include_package_data = True
package_dir=
=src
install_requires =
numpy>=1.24.0,<=1.26.4
pyee==11.0.1
websockets<12.0.0
PyGObject>=3.42.2, <=3.49.0
[options.packages.find]
where=src
[options.extras_require]
dev = black==23.10.1
flake8==6.1.0
mypy==1.6.1
isort==5.12.0
pygobject-stubs==2.10.0
pytest==7.4.3
pytest-asyncio==0.24.0a0
coverage==7.3.2
[options.entry_points]
console_scripts =
gst-webrtc-producer-list = examples.get_producer_list:main
gst-webrtc-video-recorder = examples.recorder.simple_recorder:main
[flake8]
exclude = tests,src/example/videostream-cli
max-line-length = 128
extend-ignore = E203
max-complexity = 10
[coverage:run]
branch=True
[coverage:report]
show_missing=True
[mypy]
ignore_missing_imports = True
exclude = (tests|src/example/videostream-cli|src/example/datachannel-cli)
strict = True
plugins = numpy.typing.mypy_plugin
explicit_package_bases = True
[tool:pytest]
asyncio_mode = auto
asyncio_default_fixture_loop_scope = session