You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.6 KiB
84 lines
1.6 KiB
|
|
|
|
[build-system] |
|
requires = ["flit"] |
|
build-backend = "flit.buildapi" |
|
|
|
[tool.flit.metadata] |
|
module = "ordr3" |
|
dist-name = "ordr3" |
|
author = "Holger Frey" |
|
author-email = "frey@imtek.de" |
|
home-page = "https://github.com/holgi/ordr3" |
|
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 = [ |
|
"deform >= 2.0.8", |
|
"passlib[argon2,bcrypt] >= 1.7.2", |
|
"pyramid >= 1.10", |
|
"pyramid_debugtoolbar >= 4.6.1", |
|
"pyramid_jinja2 >= 2.7", |
|
"pyramid_mailer >= 0.15.1", |
|
"pyramid_tm >= 2.4", |
|
"pyramid_retry >= 2.1", |
|
"requests >= 2.23.0", |
|
"sqlalchemy >= 1.3.15", |
|
"transaction >= 3.0.0", |
|
"waitress >= 1.4.3", |
|
"zope.sqlalchemy >= 1.3", |
|
] |
|
requires-python = ">=3.7" |
|
|
|
[tool.flit.metadata.requires-extra] |
|
test = [ |
|
"pytest >=4.0.0", |
|
"pytest-cov", |
|
"pytest-mock", |
|
"tox", |
|
"WebTest >= 2.0.34", |
|
] |
|
dev = [ |
|
"black", |
|
"flake8", |
|
"flake8-comprehensions", |
|
"isort", |
|
"keyring", |
|
"pre-commit", |
|
] |
|
|
|
[tool.flit.scripts] |
|
migrate = "ordr3.scripts.migrate_db:main" |
|
|
|
[tool.flit.entrypoints."paste.app_factory"] |
|
main = "ordr3: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"
|
|
|