-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
82 lines (74 loc) · 2.03 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
[metadata]
name = further-link
author = pi-top (CEED Ltd)
author_email = [email protected]
license = Apache Software License
description = Further Link
keywords = pi-top, further, link, further-link
url = https://github.com/pi-top/Further-Link
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 =
# Package will always update in-step with SDK
# So avoid version-locking
#
# Vendored to allow tests to pass...
#
# pitop
click>=7.1.2
aiofiles>=0.6.0
aiohttp>=3.8.3
aiohttp_cors>=0.7.0
numpy>=1.19.5
Pillow>=8.1.2
pt_web_vnc
pyOpenSSL>=22.0.0
bluez-peripheral
include_package_data = True
[options.extras_require]
test =
mock
pytest
pytest-asyncio
pytest-cov
pytest-timeout
pytest-aiohttp
pytest-mock
aioresponses
testpath
[options.entry_points]
console_scripts =
further-link=further_link.__main__:main
start-further=further_link.start_further:start_further
further-link-bluetooth-pairing=further_link.util.bluetooth.pairing:main
further-link-bluetooth-encryption=further_link.util.bluetooth.encryption:main
further-link-set-pretty-hostname=further_link.util.hostname:set_pretty_hostname
[bdist_wheel]
universal = 1
[flake8]
per-file-ignores =
__init__.py: F401
test_*: E402
conftest.py: 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]
timeout = 10
asyncio_mode = auto