19 lines
325 B
TOML
19 lines
325 B
TOML
[project]
|
|
name = "toss-quant"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"requests",
|
|
"python-dotenv",
|
|
]
|
|
|
|
[project.scripts]
|
|
toss-quant = "toss_quant.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|