pyansi/pyproject.toml

30 lines
499 B
TOML
Raw Permalink Normal View History

2023-10-29 16:46:47 -05:00
[tool.poetry]
name = "pyansi"
version = "0.1.0"
description = ""
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
readme = "README.md"
[tool.poetry.dependencies]
2023-10-30 13:58:36 -05:00
python = "^3.11"
2023-10-29 16:46:47 -05:00
[tool.black]
max-line-length = 120
[tool.isort]
profile = "black"
line_length = 120
force_single_line = true
from_first = false
force_sort_within_sections = true
[tool.ruff]
line-length = 120
2023-10-29 21:31:54 -05:00
[tool.pyright]
2023-10-30 13:58:36 -05:00
pythonVersion = "3.11"
2023-10-29 21:31:54 -05:00
2023-10-29 16:46:47 -05:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"