-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "tastytrade/__init__.py"
[project]
name = "tastytrade"
description = "An unofficial, sync/async SDK for Tastytrade!"
readme = "README.md"
requires-python = ">=3.9"
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>=14.1,<15",
]
dynamic = ["version"]
[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",
"pyright>=1.1.390",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
"enum-tools[sphinx]>=0.12.0",
"autodoc-pydantic>=2.2.0",
]
[tool.setuptools.package-data]
"tastytrade" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["tastytrade"]