32 lines
588 B
TOML
32 lines
588 B
TOML
[project]
|
|
name = "materia"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Deeman", email = "hendrik.note@gmail.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"alpha-vantage>=3.0.0",
|
|
"fredapi>=0.5.2",
|
|
"httpx>=0.28.1",
|
|
"ipykernel>=6.29.5",
|
|
"pyowm>=3.3.0",
|
|
"python-dotenv>=1.1.0",
|
|
"yfinance>=0.2.54",
|
|
]
|
|
|
|
[project.scripts]
|
|
materia = "materia:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pre-commit>=4.1.0",
|
|
"ruff>=0.9.9",
|
|
]
|