-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 753 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
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bom-weather-tracker"
version = "0.1.0"
description = "Collect and store daily weather predictions from the Australian Bureau of Meteorology API"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"requests>=2.31.0",
"playwright>=1.40.0",
"beautifulsoup4>=4.12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"hypothesis>=6.92.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.hypothesis]
max_examples = 100