-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 857 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 857 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
44
45
46
47
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gex-monitor"
version = "2.0.0"
description = "0DTE Gamma Exposure Monitor"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
dependencies = [
"ib_insync>=0.9.86",
"pandas>=2.0",
"numpy>=1.24",
"dash>=2.14",
"plotly>=5.18",
"pyarrow>=14.0",
"pydantic>=2.0",
"pyyaml>=6.0",
"exchange-calendars>=4.2",
"flask>=3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"ruff>=0.1",
]
[project.scripts]
gex-monitor = "gex_monitor.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"
select = ["E", "F", "I", "W"]