-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 944 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 944 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
30
31
32
33
34
[project]
name = "yandex-quasar-cli"
version = "0.1.3"
description = "Command line interface for Yandex Smart Home API"
readme = "README.md"
authors = [{name = "p1ne"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
keywords = [ "yandex", "quasar", "smart home", "cli"]
dependencies = [
"click>=8.1.7",
"msgspec>=0.18.6",
"pprintpp>=0.4.0",
"flatdict>=4.0.1",
"anyconfig>=0.14.0",
"deepdiff>=6.7.1",
"twine>=5.0.0",
"build>=1.1.1"
]
[project.urls]
Homepage = "https://github.com/p1ne/yandex-quasar-cli"
Changelog = "https://github.com/p1ne/yandex-quasar-cli/releases"
Issues = "https://github.com/p1ne/yandex-quasar-cli/issues"
CI = "https://github.com/p1ne/yandex-quasar-cli/actions"
[project.entry-points.console_scripts]
yandex-quasar-cli = "yandex_quasar_cli.cli:cli"
[project.optional-dependencies]
test = ["pytest"]