forked from mrf345/flask_minify
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
43 lines (40 loc) · 1014 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
43
[tool.poetry]
name = "quart_minify"
version = "0.4.1"
readme = "README.md"
description = "A Quart extension to minify quart response for html, javascript, css and less compilation as well."
repository = "https://github.com/AceFire6/quart_minify"
authors = ["Jethro Muller <[email protected]>", "Mohamed Feddad <[email protected]>"]
license = "MIT"
keywords = ["quart", "minify"]
packages = [
{include = "quart_minify"}
]
[tool.poetry.dependencies]
htmlmin = ">=0.1.12"
jsmin = ">=3.0.1"
lesscpy = ">=0.13.0"
python = ">=3.7"
quart = ">=0.10.0"
[tool.poetry.group.dev.dependencies]
coverage = "^4.5"
pytest = "^5.1"
pytest-asyncio = "^0.10.0"
pytest-cov = "^2.7"
python-coveralls = "^2.9"
black = {version = "^18.3-alpha.0", allow-prereleases = true}
flake8 = "^3.7"
flake8-quotes = "^2.1"
[tool.black]
line-length = 100
target-version = ["py37"]
include = '''
(
quart_minify/.+\.py$
| tests/.+\.py$
| setup.py$
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"