mirror of
https://github.com/catppuccin/python.git
synced 2026-02-11 23:18:40 +08:00
36 lines
747 B
TOML
36 lines
747 B
TOML
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "catppuccin"
|
|
version = "1.0.0"
|
|
description = "🐍 Soothing pastel theme for Python."
|
|
authors = ["backwardspy <backwardspy@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[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.pylint.messages_control]
|
|
disable = [
|
|
"useless-import-alias", # pyright compatibility
|
|
]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|