-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
75 lines (65 loc) · 1.86 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
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "axem-dem"
version = "0.8.0"
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", "development environment", "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 = "^7.0.0"
readchar = "^4.0.6"
requests = "2.31.0"
rich = "^13.7.1"
typer = "^0.12.2"
truststore = "^0.10.0"
textual = "^1.0.0"
fastapi = "^0.115.6"
uvicorn = "^0.34.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.17"
mike = "^2.0.0"
jinja2 = "^3.1.3"
[tool.poetry.group.test]
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
mock = "^5.1.0"
pytest-cov = "^5.0.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",
]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"