forked from edmondchuc/flask-htmx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (53 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "flask-htmx-fork"
version = "0.2.2"
description = "A Flask extension to work with HTMX. Forked."
authors = ["Edmond Chuc <edmond.chuc@gmail.com>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/edmondchuc/flask-htmx"
repository = "https://github.com/edmondchuc/flask-htmx"
documentation = "https://flask-htmx.readthedocs.io"
keywords = ["Flask", "HTMX", "Python", "Web"]
classifiers = [
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Flask",
]
packages = [
{ include = "flask_htmx" }
]
[tool.poetry.dependencies]
python = "^3.8"
Flask = ">2.0.2"
[tool.poetry.dev-dependencies]
# Checking
ruff = "^0.1.6"
pre-commit = ">=2.20.0"
# Testing
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
pytest-mock = "^3.6.1"
# Doc
Sphinx = "^4.4.0"
furo = "^2022.1.2"
sphinx-autobuild = "^2021.3.14"
sphinx-copybutton = "^0.4.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/edmondchuc/flask-htmx/issues"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.black]
line_length = 88