24 lines
565 B
TOML
24 lines
565 B
TOML
[project]
|
|
name = "paperone"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "Giulio De Pasquale",email = "git@depasquale.giugl.io"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"requests (>=2.32.5,<3.0.0)",
|
|
"python-dotenv (>=1.1.1,<2.0.0)",
|
|
"beartype (>=0.22.2,<0.23.0)",
|
|
"typer (>=0.19.2,<0.20.0)",
|
|
"yfinance (>=0.2.66,<0.3.0)",
|
|
"ipython (>=9.6.0,<10.0.0)",
|
|
"pandas-market-calendars (>=5.1.1,<6.0.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|