PyZipline/pyproject.toml
2023-12-20 17:53:00 -05:00

33 lines
817 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]
mkdocs = "1.5.3"
mkdocstrings = {extras = ["python"], version = "0.24.0"}
mkdocs-git-authors-plugin = "0.7.2"
mkdocs-git-revision-date-localized-plugin = "1.2.2"
mkdocs-material = {extras = ["imaging"], version = "^9.5.2"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"