43 lines
658 B
TOML
43 lines
658 B
TOML
[project]
|
|
name = "thechart"
|
|
version = "1.0.1"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"colorlog>=6.9.0",
|
|
"dotenv>=0.9.9",
|
|
"matplotlib>=3.10.3",
|
|
"pandas>=2.3.1",
|
|
"tk>=0.1.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pre-commit>=4.2.0",
|
|
"pyinstaller>=6.14.2",
|
|
"ruff>=0.12.5",
|
|
]
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
# pycodestyle
|
|
"E",
|
|
# Pyflakes
|
|
"F",
|
|
# pyupgrade
|
|
"UP",
|
|
# flake8-bugbear
|
|
"B",
|
|
# flake8-simplify
|
|
"SIM",
|
|
# isort
|
|
"I",
|
|
]
|
|
|
|
[tool.ruff.format]
|
|
docstring-code-format = true
|
|
|
|
[tool.ruff.lint.pycodestyle]
|
|
max-line-length = 88
|