-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
47 lines (41 loc) · 1.14 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
[metadata]
name = aiortsp
description = An asyncio-based RTSP library
url = https://github.com/marss/aiortsp
author = MARSS S.A.M.
author_email = [email protected]
long_description = file: README.rst
keywords = asyncio, rtsp
license = GNU Lesser General Public License v3 or later
Requires-Python: >=3.6
classifiers =
Development Status :: 4 - Beta
Operating System :: OS Independent
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = ~=3.6
install_requires =
dpkt~=1.9
[options.packages.find]
include = aiortsp*
[mypy]
ignore_missing_imports=1
follow_imports=silent
[flake8]
max-line-length = 160
exclude = doc/*,build/*,.tox,.eggs
max-complexity = 10
[pylint]
max-line-length = 160
disable=invalid-name,fixme,too-many-instance-attributes,too-many-arguments,too-few-public-methods
[tool:pytest]
addopts = -rsxX -q
testpaths = tests