-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
pyproject.toml
97 lines (87 loc) · 2.44 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
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
[tool.poetry]
name = "thepassiveinvestor"
version = "1.2.2"
description = "Passive Investing for the Average Joe."
license = "MIT"
authors = ["Jeroen Bouma"]
packages = [
{ include = "thepassiveinvestor" },
]
include = ['normalization/*.csv']
readme = "README.md"
homepage = "https://www.jeroenbouma.com/projects/thepassiveinvestor"
repository = "https://github.com/JerBouma/thepassiveinvestor"
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",
]
keywords = [
"Passive",
"Investing",
"Financial",
"Analysis",
"Fundamental",
"Technical",
"Quantitative",
"Database",
"Equities",
"Currencies",
"Economics",
"ETFs",
"Funds",
"Indices",
"Moneymarkets",
"Commodities",
"Options"
]
[tool.poetry.dependencies]
python = ">=3.10, <3.13"
pandas = {extras = ["computation", "performance", "excel"], version = "^2.2"}
yahooquery = "^2"
urllib3 = "^1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
pylint = "^2.17.5"
codespell = "^2.2.5"
black = ">=23.7,<25.0"
pytest-mock = "^3.11.1"
pytest-recording = "^0.13.0"
pytest-cov = "^4.1.0"
ruff = "^0.0.287"
pytest-timeout = "^2.1.0"
pytest-recorder = "^0.2.3"
ipykernel = "^6.25.2"
[build-system]
requires = ["setuptools<65.5.0", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 122
select = ["E", "W", "F", "Q", "W", "S", "UP", "I", "PD", "SIM", "PLC", "PLE", "PLR", "PLW"]
ignore = ["S105", "S106", "S107", "PLR0913", "PLR0912", "PLR0911", "PLR0915", "PD010", "PD013", "S310", "S301"]
exclude = ["conftest.py"]
[tool.pylint]
max-line-length = 122
disable = ["R0913", "W1514", "R0911", "R0912", "R0915", "R0801", "W0221", "C0103", "E1131"]
[tool.ruff.isort]
combine-as-imports = true
force-wrap-aliases = true
[tool.isort]
profile = "black"
line_length = 122
skip_gitignore = true
combine_as_imports = true
[tool.codespell]
ignore-words-list = 'te,hsi,amplitud,nam,tha,plaform'
skip = '*.json,./.git,pyproject.toml,poetry.lock,examples'
[tool.mypy]
disable_error_code = "misc"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::pytest.PytestAssertRewriteWarning:",
]