22 lines
415 B
TOML
22 lines
415 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 = [
|
|
"httpx>=0.28.1",
|
|
"ipykernel>=6.29.5",
|
|
"yfinance>=0.2.54",
|
|
]
|
|
|
|
[project.scripts]
|
|
materia = "materia:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|