-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (58 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (58 loc) · 1.15 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
[project]
name = "yfdata"
version = "0.2.1"
description = "Client for Yahoo Finance data"
authors = [
{ name = "andrea", email = "vegavis@icloud.com"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pandas>=3.0.3",
"curl-cffi>=0.15.0",
]
[dependency-groups]
dev = [
"bump-my-version>=1.0",
"ruff>=0.15",
"gitchangelog>=3.0",
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
]
docs = [
"pystache>=0.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"--cov=yfdata",
"--cov-report=term-missing",
]
markers = [
"integration: tests that call the Yahoo Finance API",
]
[tool.coverage.run]
source = ["yfdata"]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.bumpversion]
current_version = "0.2.1"
commit = true
tag = true
tag_name = "v{new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"