-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (20 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
24 lines (20 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tool.poetry]
name = "flask-pypprof"
version = "v0.1.18"
description = "Pypprof Flask wrapper"
authors = ["Diego <diegolparra@gmail.com>"]
readme = "README.md"
packages = [{ include = "flask_pypprof" }]
[tool.poetry.dependencies]
python = ">=3.8 <=3.11"
flask = "^2.1.3"
zprofile = { version = "1.0.13", markers = "sys_platform == 'linux' and platform_machine == 'x86_64'" }
protobuf = { version = "^3.20", markers = "sys_platform == 'linux' and platform_machine == 'x86_64'" }
mprofile = { version = "0.0.15", markers = "sys_platform == 'linux' and platform_machine == 'x86_64'" }
pypprof = { version = "0.0.1", markers = "sys_platform == 'linux' and platform_machine == 'x86_64'" }
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
flask_restful = "^0.3.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"