-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.16 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "hole"
version = "0.9.1"
description = "Python API for interacting with *hole."
readme = "README.rst"
license = { text = "MIT" }
authors = [
{ name = "Fabian Affolter", email = "fabian@affolter-engineering.ch" },
]
requires-python = ">=3.13"
dependencies = [
"aiohttp<4",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
]
[project.optional-dependencies]
test = [
"pytest>=9",
"pytest-asyncio>=0.21",
]
[tool.hatch.envs.test]
dependencies = [
"pytest>=9",
"pytest-asyncio>=0.21",
"aiohttp>=3.8.4,<4"
]
[tool.hatch.envs.test.scripts]
run = "pytest"
[project.urls]
Homepage = "https://github.com/home-assistant-ecosystem/python-hole"
Download = "https://github.com/home-assistant-ecosystem/python-hole/releases"