-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 878 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[tool.poetry]
name = "matricula-online-scraper"
version = "0.5.0"
description = "Command Line Interface tool for scraping Matricula Online https://data.matricula-online.eu."
repository = "https://github.com/lsg551/matricula-online-scraper"
authors = ["Luis Schulte"]
license = "MIT"
readme = "README.md"
keywords = ["matricula-online", "matricula", "scraper", "parish-registers"]
classifiers = [
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Framework :: Scrapy",
]
[tool.poetry.scripts]
matricula-online-scraper = "matricula_online_scraper.main:app"
[tool.poetry.dependencies]
python = "^3.12"
scrapy = "^2.11.1"
typer = { extras = ["all"], version = "^0.12.3" }
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
requests = "^2.31.0"
pre-commit = "^3.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"