-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 754 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 754 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
[project]
name = "ib_insync_options"
version = "0.1.0"
description = ""
authors = [{ name = "Weston Platter", email = "westonplatter@gmail.com" }]
requires-python = "~=3.9"
readme = "README.md"
dependencies = [
"pandas<2",
"numpy<2",
"loguru>=0.7.2,<0.8",
"sqlalchemy>=2.0.32,<3",
"ib-insync>=0.9.86,<0.10",
"psycopg2-binary>=2.9.9,<3",
"pydantic",
"pytz~=2024.1",
"scipy<1.14.0",
"pandera<1",
"loman",
"tqdm",
]
[dependency-groups]
test = ["pytest>=8.3.2,<9"]
[tool.uv]
default-groups = ["test"]
[tool.hatch.build.targets.sdist]
include = ["ib_insync_options"]
[tool.hatch.build.targets.wheel]
include = ["ib_insync_options"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"