-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (52 loc) · 1.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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "xtb-sdk"
version = "0.1.0"
authors = ["bwrob"]
description = ""
readme = "README.md"
packages = [{ include = "xtb_sdk" }]
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^2.1.0"
pandas = "^2.2.0"
pandas-stubs = "^2.2.3"
pydantic = "^2.6.3"
sqlalchemy = "^2.0.37"
sqlmodel = "^0.0.22"
sqlparse = "^0.5.3"
[tool.poetry.group.dev.dependencies]
basedpyright = "^1.15.2"
docformatter = "^1.7.5"
jupyter = "^1.0"
poethepoet = "^0.32.1"
pre-commit = "^4.0.1"
ruff = "^0.9.2"
[tool.ruff]
include = ["tests/*.py", "xtb_sdk/*.py"]
exclude = ["__sources"]
line-length = 79
target-version = "py313"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812",
"COM819",
"D203",
"D211",
"D213",
"FA102",
"ISC001",
]
[tool.ruff.format]
docstring-code-format = true
[tool.docformatter]
recursive = true
in-place = true
black = true
pre-summary-newline = false
blank = true
[tool.basedpyright]
typeCheckingMode = "all"