-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (35 loc) · 1.11 KB
/
pyproject.toml
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
[project]
name = "aiotedee"
version = "0.2.21"
license = {text = "MIT License"}
description = "A package to interact with Tedee locks using asyncio"
readme = "README.md"
authors = [{name = "Josef Zweck", email = "[email protected]"}]
maintainers = [{name = "Josef Zweck", email = "[email protected]"}]
keywords = ["Tedee", "api", "async", "client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"aiohttp >= 3.8.1",
]
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://github.com/zweckj/aiotedee"
Repository = "https://github.com/zweckj/aiotedee"
Documentation = "https://github.com/zweckj/aiotedee"
[project.optional-dependencies]
dev = [
"covdefaults == 2.3.0",
"coverage == 7.6.7",
"syrupy == 4.7.2",
"pytest == 8.3.3",
"pytest-asyncio == 0.24.0",
"pytest-cov == 6.0.0",
]