-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.09 KB
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
48
49
[tool.poetry]
name = "tradestation-api-python"
version = "1.3.2"
description = "A Python wrapper for the TradeStation WebAPI, providing easy access to brokerage, order execution, and market data services."
authors = ["mxcoppell"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mxcoppell/tradestation-api-python"
packages = [{ include = "tradestation", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.12.14"
python-dotenv = "^1.0.0"
requests = "^2.32.4"
urllib3 = "^2.6.0"
pydantic = "^2.10.6"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
black = "^26.3.1"
isort = "^5.12.0"
mypy = "^1.5.1"
flake8 = "^6.1.0"
pre-commit = "^3.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
[tool.flake8]
max-line-length = 100
extend-ignore = "E203"