-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (63 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
73 lines (63 loc) · 1.39 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "python-bcb"
version = "0.3.6"
description = ""
authors = [{ name = "wilsonfreitas", email = "wilson.freitas@gmail.com" }]
readme = "README.md"
requires-python = ">= 3.10"
dependencies = [
"httpx >= 0.24.0",
"lxml >= 4.9.2",
"pandas >= 2.0.0",
"tenacity >= 8.0.0",
]
[dependency-groups]
test = [
"pytest >= 7.1.3",
"flaky >= 3.7.0",
"pytest-httpx >= 0.30.0",
]
docs = [
"Sphinx >= 6,<7",
"pydata-sphinx-theme >= 0.16,<0.17",
"matplotlib >= 3.5.3",
"ipython >= 8.14.0",
"furo >= 2024,<2025",
"pickleshare >= 0.7.5,<0.8",
"pygments >= 2.7",
]
dev = [
"ruff >= 0.9.0",
"ipykernel >= 6.15.2",
"jupyter >= 1.1.1",
"mypy >= 1.0.0",
"pytest-cov >= 4.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["bcb"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: marks tests as requiring live BCB network access (deselect with '-m \"not integration\"')",
]
[tool.coverage.run]
source = ["bcb"]
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true
fail_under = 70
[tool.mypy]
python_version = "3.10"
strict = true
ignore_missing_imports = true
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "W", "F"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]