-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
41 lines (36 loc) · 1.05 KB
/
pyproject.toml
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
34
35
36
37
38
39
40
41
[tool.poetry]
name = "dynamodb-session-flask"
version = "1.1.3"
description = "A session implementation for Flask using DynamoDB as a backing store and OWASP best practices for session management."
keywords = ["flask", "session", "DynamoDB"]
authors = ["Jason Capriotti <[email protected]>"]
license = "MIT"
include = [
"LICENSE",
]
readme = "README.md"
homepage = "https://github.com/JCapriotti/dynamodb-session-flask"
repository = "https://github.com/JCapriotti/dynamodb-session-flask"
[tool.poetry.dependencies]
python = "^3.7"
Flask = "^2.0.0"
dynamodb-session-web = "^0.2.7"
[tool.poetry.group.test.dependencies]
pytest = "^6.0.0"
pytest-cov = "^3.0.0"
pytest-docker = "^0.10.3"
python-dateutil = "^2.8.2"
pytest-mock = "^3.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.pylint.'MESSAGES CONTROL']
disable = [
"missing-function-docstring",
"missing-class-docstring",
"missing-module-docstring",
]
max-line-length = 120