events-schedule/pyproject.toml

35 lines
740 B
TOML

[tool.poetry]
name = "agenda"
version = "0.1.0"
description = ""
authors = ["Renne Rocha <renne@rocha.dev.br>"]
license = "GNU GPLv3"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.13"
scrapy = "^2.12.0"
peewee = "^3.17.8"
httpie = "^3.2.4"
httpx = "^0.28.0"
curlify2 = "^2.0.0"
requests = "^2.32.3"
pillow = "^11.0.0"
python-slugify = "^8.0.4"
[tool.poetry.group.dev.dependencies]
ipython = "^8.30.0"
ipdb = "^0.13.13"
black = "^24.10.0"
pre-commit = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
known_first_party = ["data_collector"]
known_third_party = ["scrapy"]
profile = "black"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]