-
-
Notifications
You must be signed in to change notification settings - Fork 809
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (89 loc) · 2.52 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (89 loc) · 2.52 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "financedatabase"
version = "2.4.0"
description = "This is a database of 300.000+ symbols containing Equities, ETFs, Funds, Indices, Currencies, Cryptocurrencies and Money Markets."
license = {text = "MIT"}
authors = [
{ name = "Jeroen Bouma" }
]
readme = "README.md"
homepage = "https://www.jeroenbouma.com/"
repository = "https://github.com/JerBouma/FinanceDatabase"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = [
"Finance",
"Database",
"Equities",
"ETFs",
"Funds",
"Indices",
"Currencies",
"Cryptocurrencies",
"Money Markets",
]
requires-python = ">=3.10, <3.16"
dependencies = [
"financetoolkit>=2.0.3,<3.0.0",
]
[dependency-groups]
dev = [
"pytest>=8.3",
"ipykernel>=6.29",
"black[jupyter]>=25.1",
"codespell>=2.3",
"pytest-mock>=3.14",
"pytest-recording>=0.13",
"pytest-cov>=5.0",
"ruff>=0.9",
"pytest-timeout>=2.3",
"tqdm>=4.67",
]
[tool.uv]
default-groups = ["dev"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["financedatabase"]
[tool.hatch.build.targets.sdist]
include = [
"financedatabase/**",
]
[tool.black]
target-version = ["py313"]
[tool.ruff]
line-length = 122
lint.select = ["E", "W", "F", "Q", "W", "S", "UP", "I", "PD", "SIM", "PLC", "PLE", "PLR", "PLW"]
lint.ignore = ["S105", "S106", "S107", "PLR0913", "PLR0912", "PLR0911", "PLR0915", "PD010", "PD013", "S310", "S301", "S101", "PLR2004"]
exclude = ["conftest.py", "examples", "compression"]
[tool.ruff.lint.isort]
combine-as-imports = true
force-wrap-aliases = true
[tool.lint.isort]
profile = "black"
line_length = 122
skip_gitignore = true
combine_as_imports = true
[tool.codespell]
ignore-words-list = 'berkley,Sie,VIE,ore,HANSOME,Worchester,OIS'
skip = '*.json,./.git,pyproject.toml,uv.lock,examples,*.csv'
[tool.pytest.ini_options]
filterwarnings = [
"ignore::pytest.PytestAssertRewriteWarning:",
]
testpaths = ["tests"]
addopts = "--strict-markers"
markers = [
"record_stdout: capture and snapshot stdout output for the marked test",
]