-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (26 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
33 lines (26 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.poetry]
name = "finpack"
version = "0.2.3"
description = "Super simple financial tracking."
license = "Apache-2.0"
authors = ["rackreaver <rackreaver@gmail.com>"]
readme = "README.md" # Markdown files are supported
repository = "https://github.com/RackReaver/FinPack"
homepage = "https://github.com/RackReaver/FinPack"
keywords = ["python", "personal-finance", "finance", "financial", "personal-finances", "balance-sheet", "personal-finance-manager", "cashflow-management"]
[tool.poetry.scripts]
finpack = 'finpack.core.cli:main'
[tool.poetry.dependencies]
python = "^3.9"
docopt = "^0.6.2"
[tool.poetry.dev-dependencies]
black = "^21.11b1"
coverage = "^6.2"
isort = "^5.10.1"
mypy = "^0.910"
pre-commit = "^2.16.0"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"