-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
85 lines (71 loc) · 1.96 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
[tool.autoflake]
expand-star-imports = true
in-place = true
remove-all-unused-imports = true
remove-duplicate-keys = true
remove-unused-variables = true
[tool.poetry]
name = "vistafetch"
version = "0.0.0"
description = "Small & simple library to fetch financial data for stocks, ETFs, funds, etc. from Onvista."
authors = ["bossenti <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/bossenti/vistafetch"
documentation = "https://github.com/bossenti/vistafetch#readme"
keywords = [
"etf",
"exchange",
"financial-data",
"funds",
"onvista",
"stocks"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment"
]
include = [
{ path = "vistafetch/py.typed" }
]
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
pydantic = ">=2.0.0"
requests = ">=2.31.0"
rich = ">=13.0.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
autoflake = "2.3.1"
mypy = "1.13.0"
pre-commit = "3.5.0"
pytest = "8.3.3"
pytest-cov = "5.0.0"
ruff = "0.7.4"
types-requests = "2.32.0.20241016"
[tool.poetry.group.release]
optional = true
[tool.poetry.group.release.dependencies]
twine = "5.1.1"
[tool.ruff]
select = ["C90", "D", "E", "F", "I", "ICN", "N", "PL", "UP"]
ignore = [
"D107",
"D203", # ignore in favour of D211
"D213", # ignore in favour of D212
]
[tool.ruff.per-file-ignores]
"tests/**/*" = ["D100","D101", "D102", "D103", "D104"]
"tests/test_client.py" = ["I001"]
"vistafetch/client.py" = ["I001"]
"vistafetch/model/asset/__init__.py" = ["I001"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"