-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1018 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1018 Bytes
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
[project]
name = "quant-board-core"
version = "0.1.0"
description = ""
authors = [{ name = "jacob", email = "zero1024gg@gmail.com" }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi (>=0.124.0,<0.125.0)",
"uvicorn (>=0.38.0,<0.39.0)",
"yfinance (>=0.2.66,<0.3.0)",
"pandas (>=2.3.3,<3.0.0)",
"sqlalchemy (>=2.0.44,<3.0.0)",
"psycopg2-binary (>=2.9.11,<3.0.0)",
"black (>=25.11.0,<26.0.0)",
"flake8 (>=7.3.0,<8.0.0)",
"pre-commit (>=4.4.0,<5.0.0)",
]
[tool.poetry.group.dev.dependencies]
commitizen = { version = "^4.10.0", python = "<4.0" }
pytest = "^9.0.1"
httpx = "^0.28.1"
black = "^25.12.0"
ruff = "^0.14.8"
mypy = "^1.19.0"
isort = "^7.0.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [{ include = "app" }]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.0"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"app/__init__.py:__version__"
]