-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 936 Bytes
/
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
[tool.poetry]
name = "flow-forecast"
version = "0.1.0"
description = ""
authors = ["drewalth <[email protected]>"]
readme = "README.md"
[tool.poetry.scripts]
start = "server:app"
[tool.poetry.dependencies]
python = "^3.12"
matplotlib = "~3.7.2"
pandas = "~2.0.3"
prophet = "~1.1.4"
urllib3 = "~2.0.3"
fastapi = "^0.115.4"
hypercorn = "^0.17.3"
pydantic = "^2.9.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
black = "^24.8.0"
pre-commit = "^3.8.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-exec-plugin.commands]
lint = "flake8 && black --check ."
format = "isort . && black ."
[tool.isort]
profile = "black"
line_length = 120
[tool.flake8]
max-line-length = 120
extend-ignore = ["E203", "W503"]
[tool.black]
line-length = 120
target-version = ['py37', 'py38', 'py39', 'py310', 'py311']
skip-string-normalization = false