-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 869 Bytes
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
[tool.poetry]
name = "tws-sdk"
version = "0.4.0"
description = "TWS client for Python."
authors = ["Fireline Science <sean@firelinescience.com>"]
homepage = "https://github.com/Fireline-Science/tws-py"
repository = "https://github.com/Fireline-Science/tws-py"
documentation = "https://github.com/Fireline-Science/tws-py"
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
packages = [
{include = "tws"}
]
[tool.poetry.dependencies]
python = "^3.9"
httpx = {extras = ["http2"], version = ">=0.26,<0.29"}
aiofiles = "^24.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
ruff = "^0.8.2"
pytest-asyncio = "^0.24.0"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"