2020-01-15 14:42:57 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "ofx-processor"
|
2022-01-01 22:41:34 +01:00
|
|
|
version = "4.0.1"
|
2020-01-15 14:42:57 +01:00
|
|
|
description = "Personal ofx processor"
|
|
|
|
readme = "README.md"
|
|
|
|
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
|
2021-08-01 08:43:09 +02:00
|
|
|
homepage = "https://git.augendre.info/gaugendre/ofx-processor"
|
|
|
|
repository = "https://git.augendre.info/gaugendre/ofx-processor"
|
2020-03-31 18:46:18 +02:00
|
|
|
keywords = [
|
|
|
|
"ynab",
|
|
|
|
"finances",
|
|
|
|
"finance automation",
|
|
|
|
]
|
2020-01-15 14:42:57 +01:00
|
|
|
classifiers = [
|
2020-02-29 17:37:22 +01:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2020-01-15 14:42:57 +01:00
|
|
|
"Environment :: Console",
|
2020-02-29 17:37:11 +01:00
|
|
|
"Intended Audience :: End Users/Desktop",
|
2022-01-01 22:41:34 +01:00
|
|
|
"License :: OSI Approved :: The Unlicense (Unlicense)",
|
2020-02-29 17:37:11 +01:00
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: MacOS :: MacOS X",
|
|
|
|
"Operating System :: Microsoft :: Windows",
|
|
|
|
"Operating System :: Unix",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2021-11-18 19:25:02 +01:00
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
2020-03-31 18:33:40 +02:00
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
2020-02-29 17:37:11 +01:00
|
|
|
"Topic :: Utilities",
|
2020-01-15 14:42:57 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2021-11-18 19:25:02 +01:00
|
|
|
python = ">=3.8,<4"
|
|
|
|
ofxtools = "^0.9.4"
|
|
|
|
click = "^8.0.3"
|
|
|
|
dateparser = "^1.1.0"
|
2020-09-01 18:40:17 +02:00
|
|
|
requests = "^2.24.0"
|
2021-11-20 15:00:43 +01:00
|
|
|
selenium = "^4.0.0"
|
2020-01-15 14:42:57 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2020-09-01 18:40:17 +02:00
|
|
|
pytest = "^6.0.1"
|
2021-11-18 19:04:43 +01:00
|
|
|
pytest-cov = "^3.0.0"
|
|
|
|
invoke = "^1.6.0"
|
|
|
|
pre-commit = "^2.15.0"
|
2021-11-18 19:25:02 +01:00
|
|
|
tox = "^3.24.4"
|
2021-12-04 11:35:26 +01:00
|
|
|
pdbpp = "^0.10.3"
|
2020-01-15 14:42:57 +01:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2020-02-22 14:53:52 +01:00
|
|
|
ynab = 'ofx_processor.main:cli'
|
2020-01-15 14:42:57 +01:00
|
|
|
|
2021-11-18 19:06:40 +01:00
|
|
|
[tool.black]
|
|
|
|
target-version = ['py38']
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
|
2021-11-18 19:25:02 +01:00
|
|
|
[tool.tox]
|
|
|
|
legacy_tox_ini = """
|
|
|
|
[tox]
|
|
|
|
isolated_build = true
|
|
|
|
envlist = py38, py39, py310
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
whitelist_externals = poetry
|
|
|
|
commands =
|
2021-11-20 15:02:46 +01:00
|
|
|
poetry install --remove-untracked
|
2021-11-18 19:25:02 +01:00
|
|
|
poetry run inv test
|
|
|
|
"""
|
|
|
|
|
2021-11-20 15:13:26 +01:00
|
|
|
[tool.coverage.run]
|
|
|
|
omit = ["tasks.py"]
|
|
|
|
branch = true
|
|
|
|
|
2020-01-15 14:42:57 +01:00
|
|
|
[build-system]
|
2021-11-18 19:25:02 +01:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|