python/pyproject.toml
2022-11-17 20:48:50 +00:00

45 lines
1.1 KiB
TOML

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "catppuccin"
version = "0.0.0"
description = "🐍 Soothing pastel theme for Python."
authors = ["backwardspy <backwardspy@gmail.com>"]
readme = "README.md"
[tool.poetry.plugins."pygments.styles"]
catppuccin-latte = "catppuccin.extras.pygments:LatteStyle"
catppuccin-frappe = "catppuccin.extras.pygments:FrappeStyle"
catppuccin-macchiato = "catppuccin.extras.pygments:MacchiatoStyle"
catppuccin-mocha = "catppuccin.extras.pygments:MochaStyle"
[tool.poetry.dependencies]
python = "^3.7.2"
pygments = { version = "^2.13.0", optional = true }
[tool.poetry.extras]
pygments = ["pygments"]
[tool.poetry.group.dev.dependencies]
pylint = "^2.15.5"
mypy = "^0.982"
black = "^22.10.0"
isort = "^5.10.1"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
types-setuptools = "^65.5.0.3"
types-pygments = "^2.13.1.1"
[tool.poetry-dynamic-versioning]
enable = true
[tool.pylint.messages_control]
disable = [
"useless-import-alias", # pyright compatibility
]
[tool.isort]
profile = "black"