-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
50 lines (41 loc) · 1.12 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
38
39
40
41
42
43
44
45
46
47
48
49
50
# https://packaging.python.org/tutorials/packaging-projects/
[project]
name = "homeassistant-historical-sensor"
version = "2.0.0rc6"
dependencies = [
"importlib-metadata; python_version >= '3.11'",
]
authors = [
{name = "Luis López", email = "[email protected]"},
]
readme = "README.md"
description ="Historical sensors for HomeAssistant"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
[project.urls]
Homepage = "https://github.com/ldotlopez/ha-historical-sensor"
Issues = "https://github.com/ldotlopez/ha-historical-sensor/issues"
Repository = "https://github.com/ldotlopez/ha-historical-sensor.git"
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[bdist_wheel]
universal = 1
[tool.black]
target-version = ['py311']
[tool.isort]
profile = "black"
[tool.mypy]
files = ['homeassistant_historical_sensor']
[tool.pyupgrade]
addopts = "--py311-plus"
[tool.setuptools]
packages = ["homeassistant_historical_sensor"]