forked from Konfuzian/htmx-examples-with-flask
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (36 loc) · 886 Bytes
/
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
[tool.poetry]
name = "htmx-examples-with-flask"
version = "0.1.0"
description = "My implementation of the htmx examples from the official website, using Flask."
authors = ["Konfuzian"]
readme = "README.md"
packages = [{include = "examples"}]
[tool.poetry.dependencies]
python = "^3.11"
click = "^8.1.7"
flask = "^2.3.3"
flask-htmx = "^0.3.1"
jinja2-fragments = "^1.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
ruff = "^0.0.290"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
server = "examples.app:main"
[tool.black]
line-length = 88
target-version = ["py311",]
[tool.ruff]
target-version = "py311"
line-length = 88
select = [
"F", # pyflakes
"E", # pycodestyle Error
"W", # pycodestle Warning
"I", # isort
"B", # bugbear
"C90", # mccabe
"N", # pep8-naming
]