mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 07:04:04 -05:00
Tested locally and it works BUT the created `.ts` files are still broken similar to what was found in #8101 --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
29 lines
572 B
TOML
29 lines
572 B
TOML
[project]
|
|
name = "compiler-explorer-docenizers"
|
|
version = "0.0.1"
|
|
description = "Assembly documentation generators for Compiler Explorer"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"beautifulsoup4>=4.12.0",
|
|
"lxml>=5.0.0",
|
|
"pandas>=2.2.0",
|
|
"pdfminer.six>=20231228",
|
|
"PyYAML>=6.0",
|
|
"requests>=2.32.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E", # pycodestyle errors
|
|
"W", # pycodestyle warnings
|
|
"F", # pyflake
|
|
"I", # isort
|
|
"UP", # pyupgrade
|
|
]
|
|
ignore = [
|
|
"E501", # line length
|
|
] |