1# 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" 31plotly = "^5.23.0" 32pydevicetree = "0.0.13" 33igraph = "^0.11.6" 34pyparsing = "^3.1.2" 35 36[tool.poetry.group.dev] 37optional = true 38 39[tool.poetry.group.dev.dependencies] 40mypy = "^0.910" 41pytest = "^6.2.5" 42 43[tool.mypy] 44# https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file 45python_version = "3.8" 46pretty = true 47show_traceback = true 48color_output = true 49 50[[tool.mypy.overrides]] 51module = ["igraph", "pydevicetree", "pydevicetree.ast", "plotly", "plotly.graph_objects"] 52ignore_missing_imports = true 53 54[tool.coverage.run] 55source = ["tests"] 56 57[tool.coverage.paths] 58source = "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" 64