ofx-processor/pyproject.toml

75 lines
1.7 KiB
TOML

[tool.poetry]
name = "ofx-processor"
version = "4.4.6"
description = "Personal ofx processor"
readme = "README.md"
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
homepage = "https://git.augendre.info/gaugendre/ofx-processor"
repository = "https://git.augendre.info/gaugendre/ofx-processor"
keywords = [
"ynab",
"finances",
"finance automation",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
ofxtools = ">=0.9.4"
click = ">=8.0.3"
dateparser = ">=1.1.0"
requests = ">=2.24.0"
selenium = ">=4.0.0"
python-telegram-bot = {version = ">=20.0a4", allow-prereleases = true}
[tool.poetry.dev-dependencies]
pytest = ">=6.0.1"
pytest-cov = ">=3.0.0"
invoke = ">=2.0.0"
pre-commit = ">=2.15.0"
tox = ">=3.24.4"
pdbpp = ">=0.10.3"
[tool.poetry.scripts]
ynab = 'ofx_processor.main:cli'
[tool.black]
target-version = ['py38']
[tool.isort]
profile = "black"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = py310, py311
[testenv]
allowlist_externals = poetry
commands =
poetry install --sync
poetry run inv test
"""
[tool.coverage.run]
omit = ["tasks.py"]
branch = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"