-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (31 loc) · 957 Bytes
/
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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tracex_parser"
version = "2.4.4"
description = "Parser for ThreadX RTOS's trace buffers (aka TraceX)"
authors = ["Julianne Swinoga <julianneswinoga@gmail.com>"]
readme = "README.md"
license = "MIT"
exclude = [
'*.trx',
]
[tool.poetry.scripts]
parse-trx = "tracex_parser.file_parser:main"
[tool.poetry.dependencies]
python = "^3.6"
[tool.poetry.dev-dependencies]
sphinx = "^5.1.1"
sphinx_mdinclude = "^0.5.2"
sphinx-rtd-theme = "^1.0.0"
sh = "^1.14.3"
pytest-cov = "^3.0.0"
# Following are pegged at the latest version that supports Python 3.6
pytest = "==7.0.1"
GitPython = "==3.1.20"
pytest-mock = "==3.6.1"
[tool.poetry.urls]
"Repository" = "https://github.com/julianneswinoga/tracex_parser"
"Documentation" = "https://tracex_parser.readthedocs.io/en/latest"
"Bug Tracker" = "https://github.com/julianneswinoga/tracex_parser/issues"