[tool.poetry] name = "ofx-processor" version = "2.2.0" description = "Personal ofx processor" readme = "README.md" license = "GPL-3.0-or-later" authors = ["Gabriel Augendre "] 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 :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3 :: Only", "Topic :: Utilities", ] [tool.poetry.dependencies] python = ">=3.7,<4" ofxtools = "^0.8.22" click = "^7.1.2" dateparser = "^0.7.6" requests = "^2.24.0" [tool.poetry.dev-dependencies] pytest = "^6.0.1" black = "^20.8b1" pytest-cov = "^3.0.0" invoke = "^1.6.0" pre-commit = "^2.15.0" [tool.poetry.scripts] ynab = 'ofx_processor.main:cli' [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api"