-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (44 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
54 lines (44 loc) · 1.12 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "polla-scraper"
dynamic = ["version"]
description = "Alternative-source ingestion for Chilean Loto draws"
authors = [{name = "Carlos Ortega"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.12.3",
"click>=8.1.7",
"requests>=2.32.4",
"gspread>=6.1.0",
"google-auth>=2.30.0",
]
[project.scripts]
polla = "polla_app.__main__:cli"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "polla_app.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[[tool.mypy.overrides]]
module = "gspread"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "requests"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "bs4"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "bs4.*"
ignore_missing_imports = true