forked from Galala7/pySDCP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (26 loc) · 830 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
[tool.poetry]
name = "pysdcp-extended"
version = "0.0.5"
description = "Extended SDCP / PJ Talk library to control Sony projectors"
authors = ["kennymc.c"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/kennymc-c/pySDCP-extended"
keywords = ["sdcp", "pjtalk", "sony", "projector", "ip-control", "home-automation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Home Automation",
"Programming Language :: Python :: 3.11",
]
# Need as the package name contains a hyphen
packages = [
{ include = "pysdcp_extended" },
]
[tool.poetry.dependencies]
python = "^3.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"