-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (34 loc) · 983 Bytes
/
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
[tool.isort]
profile = "black"
[tool.poetry]
name = "greeneye_monitor"
version = "5.0.2"
description = "Receive data packets from GreenEye Monitor (http://www.brultech.com/greeneye/)"
homepage = "https://github.com/jkeljo/greeneye-monitor"
repository = "https://github.com/jkeljo/greeneye-monitor"
license = "MIT"
readme = "README.rst"
authors = ["Jonathan Keljo"]
keywords = ["greeneye"]
packages = [{include="greeneye"}]
include = ["greeneye/py.typed"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Home Automation",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8.5"
siobrultech-protocols = "0.13"
[tool.poetry.group.test.dependencies]
ruff = "*"
pyright = "*"
pytest = "*"
pytest-socket = "*"
[tool.pyright]
include = ["greeneye", "tests", "dump_packets.py"]
pythonVersion = "3.10"
typeCheckingMode = "strict"