|
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["flit"]
|
|
|
|
build-backend = "flit.buildapi"
|
|
|
|
|
|
|
|
[tool.flit.metadata]
|
|
|
|
module = "superx_budget"
|
|
|
|
dist-name = "superx_budget"
|
|
|
|
author = "Holger Frey"
|
|
|
|
author-email = "frey@imtek.de"
|
|
|
|
home-page = "https://github.com/holgi/superx_budget"
|
|
|
|
description-file = "README.md"
|
|
|
|
license = "Beerware"
|
|
|
|
|
|
|
|
# see https://pypi.org/classifiers/
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
"License :: Freely Distributable",
|
|
|
|
]
|
|
|
|
|
|
|
|
requires = [
|
|
|
|
"openpyxl >= 3.0.0",
|
|
|
|
"pyramid >= 1.10",
|
|
|
|
"pyramid_jinja2 >= 2.7",
|
|
|
|
"pyramid_mailer >= 0.15.1",
|
|
|
|
"waitress >= 1.4.3",
|
|
|
|
"passlib[argon2] >= 1.7.2",
|
|
|
|
]
|
|
|
|
requires-python = ">=3.7"
|
|
|
|
|
|
|
|
[tool.flit.metadata.requires-extra]
|
|
|
|
test = [
|
|
|
|
"pytest >=4.0.0",
|
|
|
|
"pytest-cov",
|
|
|
|
"pytest-mock",
|
|
|
|
"tox",
|
|
|
|
]
|
|
|
|
dev = [
|
|
|
|
"black",
|
|
|
|
"flake8",
|
|
|
|
"flake8-comprehensions",
|
|
|
|
"isort >= 5.0.0",
|
|
|
|
"keyring",
|
|
|
|
"pre-commit",
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.flit.entrypoints."paste.app_factory"]
|
|
|
|
main = "superx_budget:main"
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 79
|
|
|
|
py37 = true
|
|
|
|
include = '\.pyi?$'
|
|
|
|
exclude = '''
|
|
|
|
/(
|
|
|
|
\.git
|
|
|
|
| \.tox
|
|
|
|
| \.venv
|
|
|
|
| build
|
|
|
|
| dist
|
|
|
|
)/
|
|
|
|
'''
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
line_length=79
|
|
|
|
multi_line_output=3
|
|
|
|
length_sort="True"
|
|
|
|
include_trailing_comma="True"
|