kalshi-csv/pyproject.toml

38 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2026-07-18 13:34:47 -04:00
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kalshi-csv"
version = "0.2.0"
2026-07-18 13:34:47 -04:00
description = "Parse Kalshi transaction CSV files and generate IRS Form 8949 tax summaries"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "markmental", email = "marky611@gmail.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial",
]
keywords = ["kalshi", "csv", "tax", "irs", "form-8949"]
2026-07-18 13:51:44 -04:00
[project.urls]
Homepage = "https://github.com/MARKMENTAL/kalshi-csv"
Source = "https://mentalnet.xyz/forgejo-v2/markmental/kalshi-csv"
2026-07-18 13:51:44 -04:00
Issues = "https://github.com/MARKMENTAL/kalshi-csv/issues"
2026-07-18 13:34:47 -04:00
[project.scripts]
kalshi-csv = "kalshi_csv.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/kalshi_csv"]