forked from SIMO-io/simo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 758 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 758 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "simo"
version = "3.4.24"
authors = [
{ name="Simon V.", email="simon@simo.io" },
]
description = "Smart Home Supremacy"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.scripts]
simo-update = "simo.core.management.update:perform_update"
simo-auto-update = "simo.core.management.update:maybe_update"
[project.urls]
Homepage = "https://simo.io"
Issues = "https://github.com/SIMO-io/simo/issues"