31 lines
735 B
TOML
31 lines
735 B
TOML
[project]
|
|
name = "pyzipline"
|
|
version = "0.1.0"
|
|
description = "Python API Wrapper for the Zipline API"
|
|
authors = [{name="cswimr", email="seaswimmerthefsh@gmail.com"}]
|
|
license = {file="LICENSE"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"aiohttp>=3.10.10",
|
|
"asyncio>=3.4.3",
|
|
"pydantic>=2.9.2",
|
|
"requests>=2.32.3",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
docs = [
|
|
"mkdocs>=1.6.1",
|
|
"mkdocs-git-authors-plugin>=0.9.0",
|
|
"mkdocstrings[python]>=0.26.2",
|
|
"mkdocs-git-revision-date-localized-plugin>=1.2.9",
|
|
"mkdocs-material[imaging]>=9.5.42",
|
|
"mkdocs-redirects>=1.2.1",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"datamodel-code-generator>=0.26.2",
|
|
"pylint>=3.3.1",
|
|
"ruff>=0.7.0",
|
|
]
|