-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (39 loc) · 1.16 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
42
43
44
45
46
47
[tool.poetry]
name = "flask-pg-session"
version = "0.1.0"
description = "Flask extension that implements server-side sessions in PostgreSQL"
authors = ["Giuseppe Papallo <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/giuppep/flask-pg-session"
repository = "https://github.com/giuppep/flask-pg-session"
documentation = "https://github.com/giuppep/flask-pg-session#readme"
keywords = ["flask", "server-side session", "session"]
packages = [{ include = "flask_pg_session" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/giuppep/flask-pg-session/issues"
[tool.poetry.dependencies]
python = ">3.8.1"
psycopg2-binary = ">2"
flask = ">1"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
isort = "^5.12.0"
mypy = "^1.3.0"
pre-commit = "^3.3.2"
pydocstyle = "^6.3.0"
ruff = "^0.0.269"
mkdocs = "^1.4.3"
[tool.pydocstyle]
convention = "google"
add-ignore = "D105,D104,D101,D100,D102,D107"
[tool.isort]
profile = "black"
[tool.mypy]
follow_imports = "normal"
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_untyped_calls = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"