-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 860 Bytes
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
32
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "abgeordnetenwatch_python"
version = "0.1.0"
description = "Fetch questions and answers from german politicians via python classes."
authors = [
{ name="Bruno Schilling", email="bruno.schilling@protonmail.ch" }
]
license = { text = "GPL-3.0-only" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# "numpy>=1.21.0",
"beautifulsoup4>=4.12",
"tqdm>=4.66",
"aiohttp>=3.11",
"pydantic>=2.11"
]
[project.optional-dependencies]
dev = ["pytest"]
[project.scripts]
load_parliament_qa = "abgeordnetenwatch_python.cli.load_parliament_qa:main"
load_questions_answers = "abgeordnetenwatch_python.cli.load_questions_answers:main"
convert_qa = "abgeordnetenwatch_python.cli.convert_qa:main"
[tool.setuptools.packages.find]
where = ["."]