-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
62 lines (56 loc) · 1.6 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "ts-api"
version = "0.2.0"
description = "An unofficial wrapper for the TradeStation API."
authors = ["Tyler Patterson <pattertj@duck.com>"]
readme = "README.md"
repository = "https://github.com/pattertj/ts-api"
homepage = "https://github.com/pattertj/ts-api"
packages = [{include = "ts"}]
license = "LICENSE"
keywords = ["tradestation", "finance", "trading", "automated-trading", "tradestation-api", "ts-api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial"
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
httpx = "^0.24.0"
[tool.poetry.group.dev.dependencies]
deptry = "^0.12.0"
mypy = "^1.4.1"
pre-commit = "^3.3.3"
bandit = "^1.7.5"
flake8 = "^6.0.0"
pydocstyle = "^6.3.0"
flake8-bugbear = "^23.7.10"
autopep8 = "^2.0.4"
flake8-comprehensions = "^3.14.0"
flake8-simplify = "^0.20.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py310']
preview = true
[tool.isort]
line_length = 120
profile = "black"
[tool.mypy]
files = ["ts"]
disallow_untyped_defs = "True"
no_implicit_optional = "True"
check_untyped_defs = "True"
warn_unused_ignores = "True"
show_error_codes = "True"
ignore_missing_imports="True"