-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
42 lines (38 loc) · 872 Bytes
/
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
[metadata]
name = python_linkplay
description = A Python Library for Seamless LinkPlay Device Control
long_description = file: README.md
long_description_content_type = text/markdown
author = Velleman Group nv
version = attr: linkplay.VERSION
license = MIT
classifiers =
Programming Language :: Python :: 3
[options]
packages = find_namespace:
install_requires =
async-timeout>=4.0.3
aiohttp>=3.8.5
appdirs>=1.4.4
async_upnp_client>=0.36.2
deprecated>=1.2.14
aiofiles>=23.1.0
python_requires = >=3.11
package_dir =
=src
zip_safe = no
[options.package_data]
linkplay = py.typed
[options.packages.find]
where = src
[options.extras_require]
testing =
pytest>=7.3.1
pytest-cov>=4.1.0
pytest-mock>=3.10.0
pytest-asyncio>=0.23.3
mypy>=1.3.0
ruff>=0.5.4
tox>=4.6.0
typing-extensions>=4.6.3
pre-commit>=3.8.0