29 lines
618 B
TOML
29 lines
618 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"
|
|
|
|
|
|
[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"]
|