-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (37 loc) · 1.18 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
[tool.poetry]
name = "triggercmd"
version = "0.4.0"
description = "Linux CLI client to TriggerCMD cloud service agent."
authors = ["Gustavo Soares <gustavo.soares.cdc@gmail.com>", "Madson Dias <madsonddias@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/GussSoares/triggercmd-cli"
repository = "https://github.com/GussSoares/triggercmd-cli"
keywords = ["triggercmd", "alexa", "echo-dot", "cli", "archlinux", "manjaro"]
classifiers = [
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [{ include = "triggercmd_cli" }]
[tool.poetry.dependencies]
python = "^3.8"
inquirerpy = "^0.2.4"
rich = "^10.9.0"
pyfiglet = "^0.8.post1"
requests = "^2.26.0"
typer = "0.3.2"
fastapi = {extras = ["all"], version = "^0.70.0"}
aiofiles = "^0.7.0"
PyGObject = "^3.42.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
autopep8 = "^1.5.7"
pre-commit = "^2.15.0"
typer-cli = "^0.0.12"
[tool.poetry.scripts]
triggercmd = 'triggercmd_cli.main:run'
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true