36 lines
750 B
TOML
36 lines
750 B
TOML
[project]
|
|
name = "xactfetch"
|
|
authors = [
|
|
{name = "Dustin C. Hatch", email = "dustin@hatch.name"},
|
|
]
|
|
description = "Fetch transaction exports from online banking websites"
|
|
requires-python = ">=3.10"
|
|
license = {text = "CC0"}
|
|
classifiers = [
|
|
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
dependencies = [
|
|
"httpx~=0.27.0",
|
|
"playwright~=1.32",
|
|
"requests~=2.29.0",
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
[project.scripts]
|
|
xactfetch = "xactfetch:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
[tool.pyright]
|
|
venvPath = '.'
|
|
venv = '.venv'
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
skip-string-normalization = true
|