blob: 73251d7ecb78f71dc2d46a6e13e664e75a340ee1 [file] [log] [blame]
Xialin Liuda3b62f2024-06-28 11:33:41 -05001# Poetry pyproject.toml: https://python-poetry.org/docs/pyproject/
2[build-system]
3requires = ["poetry_core>=1.0.0"]
4build-backend = "poetry.core.masonry.api"
5
6[tool.poetry]
7name = "cot_dt2c"
8version = "0.1.0"
9description = "CoT-dt2c Tool is a python script to convert CoT DT file into corresponding C file"
10authors = ["Arm Ltd <tf-a@lists.trustedfirmware.org>"]
11license = "BSD-3"
12repository = "https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git/"
13homepage = "https://trustedfirmware-a.readthedocs.io/en/latest/index.html"
14
15# Pypi classifiers: https://pypi.org/classifiers/
16classifiers = [
17 "Development Status :: 3 - Alpha",
18 "Intended Audience :: Developers",
19 "Operating System :: OS Independent",
20 "Topic :: Software Development :: Libraries :: Python Modules",
21 "License :: OSI Approved :: BSD License",
22 "Programming Language :: Python :: 3",
23 "Programming Language :: Python :: 3.8",
24 "Programming Language :: Python :: 3.9",
25]
26
27
28[tool.poetry.dependencies]
29python = "^3.8"
30click = "^8.1.7"
Xialin Liuda3b62f2024-06-28 11:33:41 -050031plotly = "^5.23.0"
Chris Kayed2bf2e2024-08-15 17:08:07 +000032pydevicetree = "0.0.13"
Xialin Liuda3b62f2024-06-28 11:33:41 -050033igraph = "^0.11.6"
Chris Kayed2bf2e2024-08-15 17:08:07 +000034pyparsing = "^3.1.2"
Xialin Liuda3b62f2024-06-28 11:33:41 -050035
Chris Kayed2bf2e2024-08-15 17:08:07 +000036[tool.poetry.group.dev]
37optional = true
38
39[tool.poetry.group.dev.dependencies]
Xialin Liuda3b62f2024-06-28 11:33:41 -050040mypy = "^0.910"
41pytest = "^6.2.5"
Xialin Liuda3b62f2024-06-28 11:33:41 -050042
43[tool.mypy]
44# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file
Chris Kayed2bf2e2024-08-15 17:08:07 +000045python_version = "3.8"
Xialin Liuda3b62f2024-06-28 11:33:41 -050046pretty = true
47show_traceback = true
48color_output = true
49
Chris Kayed2bf2e2024-08-15 17:08:07 +000050[[tool.mypy.overrides]]
51module = ["igraph", "pydevicetree", "pydevicetree.ast", "plotly", "plotly.graph_objects"]
52ignore_missing_imports = true
53
Xialin Liuda3b62f2024-06-28 11:33:41 -050054[tool.coverage.run]
55source = ["tests"]
56
Chris Kayed2bf2e2024-08-15 17:08:07 +000057[tool.coverage.paths]
Xialin Liuda3b62f2024-06-28 11:33:41 -050058source = "cot_dt2c"
59
60[tool.poetry.scripts]
61# Entry points for the package https://python-poetry.org/docs/pyproject/#scripts
62# "cot-dt2c" = "cot_dt2c.__main__:cli"
63"cot-dt2c" = "cot_dt2c.__main__:cli"