-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.16 KB
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
[project]
name = "flask-vite"
version = "0.6.1"
description = "Flask+Vite integration."
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",
]
authors = [
{ name = "Abilian SAS", email = "contact@abilian.com" },
]
requires-python = "<4.0,>=3.9"
dependencies = [
"flask>2",
]
[project.urls]
homepage = "https://github.com/abilian/flask-vite"
[project.entry-points."flask.commands"]
vite = "flask_vite.cli:vite"
[dependency-groups]
dev = [
"abilian-devtools<1.0.0,>=0.5.13",
"devtools<1.0.0,>=0.12.2",
"honcho<3.0.0,>=1.1.0",
"pytest<9,>=8",
"pytest-mock<4,>=3",
"tox>=4.24.1",
]
# ------------------------------------------------------------
[tool.isort]
profile = "black"
# ------------------------------------------------------------
[tool.pdm.build]
includes = [
"src/flask_vite",
"tests",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"