-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (54 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
67 lines (54 loc) · 1.4 KB
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
[project]
name = "yfinance-service"
version = "0.0.26"
description = ""
authors = [
{name = "Vorckea",email = "akselschrader@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi (>=0.136.0,<0.137.0)",
"yfinance (>=1.3.0,<2.0.0)",
"uvicorn (>=0.46.0,<0.47.0)",
"pydantic (>=2.13.3,<3.0.0)",
"pandas (>=3.0.2,<4.0.0)",
"prometheus-client (>=0.25.0,<0.26.0)",
"starlette (>=1.0.0,<2.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"pydantic-settings (>=2.14.0,<3.0.0)"
]
package-mode = false
[tool.poetry.group.docker.dependencies]
uvloop = {version = "^0.22.1", markers = "sys_platform == 'linux'"}
httptools = "^0.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
ruff = "^0.15.11"
black = "^25.1.0"
pytest-mock = "^3.15.1"
pylint = "^4.0.5"
pytest-cov = "^7.1.0"
httpx = "^0.28.1"
pytest-asyncio = "^1.2.0"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"integration: marks tests as integration tests"
]
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
[tool.ruff.lint]
# Enable Pyflakes, pycodestyle, isort, flake8-docstrings, and more
select = ["E", "F", "W", "I", "N", "D"]
[tool.ruff.format]
quote-style = "double"