phlyght/pyproject.toml

33 lines
603 B
TOML
Raw Normal View History

2022-11-28 02:43:36 +00:00
[tool.poetry]
name = "lights"
version = "0.0.1"
description = "Lights"
authors = ["Ra <ra@tcp.direct>"]
[tool.poetry.dependencies]
python = ">=3.11,<4.0.0"
2022-11-28 08:54:10 +00:00
httpx = ">=0.23.1"
pydantic = ">=1.10.2"
yarl = ">=1.8.1"
2022-11-29 23:14:56 +00:00
ujson = "^5.5.0"
loguru = "^0.6.0"
orjson = "^3.8.2"
2022-11-28 02:43:36 +00:00
[tool.poetry.dev-dependencies]
black = ">=22.10.0"
2022-11-28 08:54:10 +00:00
rich = ">=12.6.0"
2022-11-28 02:43:36 +00:00
2022-11-30 12:08:35 +00:00
[tool.poetry.group.dev.dependencies]
pycodestyle = "^2.10.0"
pylint = "^2.15.7"
mypy = "^0.991"
2022-11-28 02:43:36 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2022-11-30 12:08:35 +00:00
[tool.flake8]
ignore = ["W503", "E501", "E203"]
extras = ["E501", "E203"]