Initial commit - Data scraper for Jundiaí events
This commit is contained in:
commit
d7f6b31b53
15 changed files with 2035 additions and 0 deletions
29
pyproject.toml
Normal file
29
pyproject.toml
Normal file
|
@ -0,0 +1,29 @@
|
|||
[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"]
|
Loading…
Add table
Add a link
Reference in a new issue