-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
40 lines (35 loc) · 897 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tastytrade"
version = "9.1"
description = "An unofficial, sync/async SDK for Tastytrade!"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Graeme Holliday", email = "[email protected]"},
]
dependencies = [
"httpx>=0.27.2",
"pandas-market-calendars>=4.4.1",
"pydantic>=2.9.2",
"websockets>=13.1",
]
[project.urls]
Homepage = "https://github.com/tastyware/tastytrade"
Documentation = "https://tastyworks-api.readthedocs.io/en/latest"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"pytest-aio>=1.5.0",
"pytest-cov>=5.0.0",
"ruff>=0.6.9",
"types-pytz>=2024.2.0.20241003",
"pyright>=1.1.384",
]
[tool.setuptools.package-data]
"tastytrade" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["tastytrade"]