forked from axem-solutions/dem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
63 lines (55 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "axem-dem"
version = "0.2.1"
description = "Manager for Containerized Development Environments"
authors = ["Janos Murai <janos.murai@axemsolutions.io>"]
license = "Eclipse Public License - v2.0"
readme = "README.md"
homepage = "https://axemsolutions.io/"
documentation = "https://axemsolutions.io/dem_doc/"
repository = "https://github.com/axem-solutions/dem"
keywords = ["iot", "embedded", "edge", "devops", "tools", "containers"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Compilers",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Testing"
]
packages = [{include = "dem"}]
[tool.poetry.scripts]
dem = "dem.__main__:main"
[tool.poetry.dependencies]
python = "^3.10"
docker = "6.1.3"
readchar = "4.0.5"
requests = "2.31.0"
rich = "13.4.2"
typer = "0.9.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.1.7"
[tool.poetry.group.test]
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
mock = "^5.0.2"
pytest-cov = "^4.1.0"
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
"if __name__ == .__main__.:",
]
[tool.coverage.run]
omit =[
# Tests are not needed for the absract base class.
"dem/core/user_output.py",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"