-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
63 lines (54 loc) · 1.34 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
[metadata]
name = pt-web-vnc
author = pi-top (CEED Ltd)
author_email = deb-maintainers@pi-top.com
license = Apache Software License
description = pi-top Web VNC Tool
keywords = pi-top, raspberrypi
url = https://github.com/pi-top/pt-web-vnc
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Education
Intended Audience :: Developers
Topic :: Education
Topic :: System :: Hardware
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: PyPy
[options]
packages = find:
install_requires =
Pillow >= 8.1.2
include_package_data = True
[bdist_wheel]
universal = 1
[flake8]
per-file-ignores =
__init__.py: F401
test_*: E402
# https://black.readthedocs.io/en/stable/faq.html#why-are-flake8-s-e203-and-w503-violated
extend-ignore = E203
max-line-length = 150
[isort]
profile = black
[tool:pytest]
norecursedirs =
.git
debian
asyncio_mode = auto
testpaths =
tests
python_files = test_*.py
[options.extras_require]
test =
mock
pytest
pytest-asyncio
pytest-cov
requests
testpath