[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "finance-query"
version = "3.0.0"
description = "Python client for the Finance Query API"
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["httpx>=0.27"]
[project.urls]
Repository = "https://github.com/Verdenroz/finance-query"
[tool.hatch.build]
ignore-vcs = true
[tool.hatch.build.targets.wheel]
packages = ["src/finance_query"]
[tool.hatch.build.targets.wheel.hooks.custom]
path = "hatch_build.py"
[tool.hatch.build.targets.sdist]
include = ["README.md", "hatch_build.py", "src"]