forked from alibaba/PyFlightProfiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 869 Bytes
/
pyproject.toml
File metadata and controls
33 lines (27 loc) · 869 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
25
26
27
28
29
30
31
32
33
[tool.poetry]
name = "flight_profiler"
version = "1.0.7"
description = "A diagnostic toolkit for on-the-fly analysis of remote python processes."
homepage = "https://github.com/alibaba/PyFlightProfiler"
readme = "README.md"
authors = []
packages = [
{ include = "flight_profiler" }
]
include = ["flight_profiler/lib/*"]
[tool.poetry.build]
script = "build_c_extensions.py"
generate-setup-file = true
[tool.poetry.dependencies]
python = ">=3.8,<3.15"
pympler = "^1.1"
py-spy = { version = "^0.4.0", markers = "python_version in '3.8, 3.9, 3.10, 3.11, 3.12, 3.13'" }
pystack = { version = "^1.4.1", markers = "sys_platform == 'linux'" }
[tool.poetry.dev-dependencies]
pytest = "*"
torch = "*"
[tool.poetry.scripts]
flight_profiler = "flight_profiler.client:run"
[build-system]
requires = ["poetry-core", "setuptools"]
build-backend = "poetry.core.masonry.api"