-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.05 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
[tool.poetry]
name = "optrade"
version = "0.0.1"
description = "Options Forecasting and Trading Framework"
authors = ["Xavier Mootoo <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "optrade" }
]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "<=2.2.3"
pandas = "^2.2.3"
httpx = "^0.28.1"
rich = "^13.9.4"
pydantic = "^2.10.6"
PyYAML = "6.0.2"
neptune = "1.13.0"
matplotlib = "3.10.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
mypy = "^1.8.0"
flake8 = "^7.0.0"
isort = "^5.13.2"
pytest-cov = "^4.1.0"
[tool.mypy]
files = ["optrade"]
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
[tool.flake8]
max-line-length = 88
extend-ignore = "E203"
exclude = [".git", "__pycache__", "build", "dist"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"