ofx-processor/pyproject.toml

48 lines
1.3 KiB
TOML
Raw Normal View History

2020-01-15 14:42:57 +01:00
[tool.poetry]
name = "ofx-processor"
2020-05-08 18:40:19 +02:00
version = "2.0.2"
2020-01-15 14:42:57 +01:00
description = "Personal ofx processor"
readme = "README.md"
license = "GPL-3.0-or-later"
authors = ["Gabriel Augendre <gabriel@augendre.info>"]
2020-05-08 18:40:19 +02:00
homepage = "https://github.com/Crocmagnon/ofx-processor/"
2020-05-08 18:46:30 +02:00
repository = "https://github.com/Crocmagnon/ofx-processor/"
2020-03-31 18:46:18 +02:00
keywords = [
"ynab",
"finances",
"finance automation",
]
2020-01-15 14:42:57 +01:00
classifiers = [
"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",
"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",
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]
2020-02-26 18:56:57 +01:00
python = ">=3.7,<4"
2020-01-15 14:42:57 +01:00
ofxtools = "^0.8.20"
click = "^7.0"
2020-01-16 19:02:17 +01:00
dateparser = "^0.7.2"
2020-02-08 19:07:05 +01:00
requests = "^2.22.0"
2020-01-15 14:42:57 +01:00
[tool.poetry.dev-dependencies]
pytest = "^5.2"
black = "^19.10b0"
2020-02-26 18:56:57 +01:00
coverage = "^5.0.3"
2020-01-15 14:42:57 +01:00
[tool.poetry.scripts]
ynab = 'ofx_processor.main:cli'
2020-01-15 14:42:57 +01:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"