-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.04 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 = "tradestation/__init__.py"
[project]
name = "tradestation"
description = "An unofficial, sync/async SDK for Tradestation!"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Graeme Holliday", email = "[email protected]"},
{name = "Ethan Corgatelli", email = "[email protected]"},
]
dependencies = [
"httpx>=0.27.2",
"pydantic>=2.9.2",
"pyjwt>=2.10.1",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/tastyware/tradestation"
Documentation = "https://tradestation.readthedocs.io/en/latest"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"ruff>=0.6.7",
"pyright>=1.1.391",
"pytest-aio>=1.9.0",
"sphinx>=8.1.3",
"sphinx-rtd-theme>=3.0.2",
"autodoc-pydantic>=2.2.0",
"enum-tools[sphinx]>=0.12.0",
]
[tool.setuptools.package-data]
"tradestation" = ["py.typed"]
[tool.setuptools.packages.find]
where = ["tradestation"]