30 lines
640 B
TOML
30 lines
640 B
TOML
[tool.poetry]
|
|
name = "pyzipline"
|
|
version = "3.7.7"
|
|
description = "Python API Wrapper for the Zipline API"
|
|
authors = ["SeaswimmerTheFsh <seaswimmerthefsh@gmail.com>"]
|
|
license = "GNU GPLv3"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10 || ^3.11 || ^3.12"
|
|
requests = "^2.31.0"
|
|
asyncio = "^3.4.3"
|
|
aiohttp = "^3.9.1"
|
|
|
|
[tool.poetry.group.dev]
|
|
optional = true
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pylint = "^3.0.3"
|
|
|
|
[tool.poetry.group.docs]
|
|
optional = true
|
|
|
|
[tool.poetry.group.docs.dependencies]
|
|
sphinx = "^7.2.6"
|
|
sphinx-rtd-theme = "^2.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|