-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
41 lines (36 loc) · 1018 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
[tool.poetry]
name = "flask-vite"
version = "0.5.2"
homepage = "https://github.com/abilian/flask-vite"
description = "Flask+Vite integration."
authors = ["Abilian SAS <[email protected]>"]
readme = "README.md"
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
packages = [
{ include = "flask_vite", from = "src" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.plugins."flask.commands"]
vite = "flask_vite.cli:vite"
[tool.poetry.dependencies]
python = "^3.9"
flask = ">2"
[tool.poetry.group.dev.dependencies]
abilian-devtools = "^0.5.13"
devtools = "^0.12.2"
honcho = "^1.1.0"
pytest = "^8"
pytest-mock = "^3"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"