-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 917 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 917 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
34
35
36
37
38
39
40
41
42
[build-system]
build-backend = "mesonpy"
requires = ["meson-python>=0.17"]
[project]
name = "vmprof"
dynamic = ["version"]
description = "Python's vmprof client"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "vmprof team", email = "fijal@baroquesoftware.com"},
]
requires-python = ">=3.10,<3.16"
dependencies = [
"requests",
"colorama",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
Homepage = "https://github.com/vmprof/vmprof-python"
Documentation = "https://vmprof.readthedocs.org/"
[project.scripts]
vmprofshow = "vmprof.show:main"
[dependency-groups]
test = [
"pytest",
"cffi",
"setuptools>=77",
]
[tool.meson-python.args]
setup = ["--vsenv"]