-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (51 loc) · 1.21 KB
/
pyproject.toml
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
# [tool.poetry]
# name = "yfin"
# version = "0.2.3"
# description = ""
# authors = ["Volker Lorrmann <[email protected]>"]
# readme = "README.md"
# packages = [{ include = "yfin", from = "src" }]
# [tool.poetry.dependencies]
# python = "^3.10"
# pandas = "^2.0.0"
# numpy = "^1.24.2"
# requests = "^2.28.1"
# lxml = "^4.9.1"
# parallel-requests = { git = "https://github.com/legout/parallel-requests.git" }
# tqdm = "^4.65.0"
[tool.pdm.build]
includes = ["src/yfin"]
[tool.pdm.dev-dependencies]
pyarrow = [
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
authors = [{ name = "Volker Lorrmann", email = "[email protected]" }]
requires-python = ">=3.11,<3.13"
dependencies = [
"numpy>=1.24.2",
"requests>=2.28.1",
"lxml>=4.9.1",
"tqdm>=4.65.0",
"pandas>=2.0.0",
"parallel-requests @ git+https://github.com/legout/parallel-requests",
"pendulum>=2.1.2",
"yfinance>=0.2.37",
]
name = "yfin"
version = "0.3.0"
description = ""
readme = "README.md"
[project.optional-dependencies]
dev = [
"ipython>=8.17.2",
"isort>=5.13.2",
"black>=24.1.1",
"yahooquery>=2.3.7",
"s3fs>=2024.3.1",
"pyarrow>=15.0.2",
"httpx>=0.27.0",
"niquests>=3.5.5",
]