-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (49 loc) · 1.27 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
[project]
name = "yahooquery"
version = "2.4.1"
description = "Python wrapper for an unofficial Yahoo Finance API"
authors = [
{name = "Doug Guthrie", email = "douglas.p.guthrie@gmail.com"}
]
documentation = "https://yahooquery.dpguthrie.com"
keywords = ["python", "API", "finance", "stocks", "Yahoo Finance"]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.9,<4.0"
dependencies = [
"curl-cffi>=0.10.0",
"pandas>=2.2.0",
"requests-futures>=1.0.1",
"tqdm>=4.65.0",
"lxml>=4.9.3",
"beautifulsoup4>=4.12.2",
]
[project.optional-dependencies]
premium = ["selenium>=4.32.0"]
dev = [
"pytest>=8.3.0",
"ruff>=0.11.0",
"pytest-cov>=6.1.0",
"pre-commit>=4.2.0",
"mkdocs-material>=9.6.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
target-version = "py39"
select = ["E", "F", "I", "N", "W", "B", "UP", "PL", "RUF"]
ignore = []
[tool.ruff.isort]
known-first-party = ["yahooquery"]
import-heading-firstparty = "first party"
import-heading-future = "future"
import-heading-local = "local"
import-heading-stdlib = "stdlib"
import-heading-thirdparty = "third party"
multi-line-output = 3
include-trailing-comma = true
force-grid-wrap = 0
use-parentheses = true
line-length = 88