-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.24 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 = "opensensemap-api"
version = "0.4.1"
description = "Python client for interacting with the openSenseMap API."
readme = "README.rst"
license = "MIT"
requires-python = ">=3.13"
authors = [
{ name = "Fabian Affolter", email = "fabian@affolter-engineering.ch" },
]
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",
]
dependencies = [
"aiohttp>=3.8.5,<4",
]
[project.optional-dependencies]
test = [
"pytest>=9",
"pytest-asyncio>=0.21",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[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-opensensemap-api"
Download = "https://github.com/home-assistant-ecosystem/python-opensensemap-api/releases"