-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
77 lines (70 loc) · 1.89 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
[project]
name = "vistafetch"
version = "0.0.0"
description = "Small & simple library to fetch financial data for stocks, ETFs, funds, etc. from Onvista."
authors = [
{ name = "bossenti", email= "[email protected]"},
]
license.text = "Apache 2.0"
readme = "README.md"
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",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
requires-python = ">=3.9, <3.14"
dependencies = [
"pydantic>=2.0.0",
"requests>=2.31.0",
"rich>=13.0.0",
]
[dependency-groups]
dev = [
"autoflake==2.3.1",
"mypy==1.14.0",
"pre-commit==3.5.0",
"pytest-cov==5.0.0",
"pytest==8.3.4",
"ruff==0.8.4",
"types-requests==2.32.0.20241016",
]
release = [
"twine==6.0.1",
]
[tool.autoflake]
expand-star-imports = true
in-place = true
remove-all-unused-imports = true
remove-duplicate-keys = true
remove-unused-variables = true
[tool.ruff]
lint.select = ["C90", "D", "E", "F", "I", "ICN", "N", "PL", "UP"]
lint.ignore = [
"D107",
"D203", # ignore in favour of D211
"D213", # ignore in favour of D212
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*" = ["D100","D101", "D102", "D103", "D104"]
"tests/test_client.py" = ["I001"]
"vistafetch/client.py" = ["I001"]
"vistafetch/model/asset/__init__.py" = ["I001"]