-
Notifications
You must be signed in to change notification settings - Fork 139
/
pyproject.toml
39 lines (35 loc) · 1.16 KB
/
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
[build-system]
requires = ["setuptools>=43"]
build-backend = "setuptools.build_meta"
[project]
name = "snakeviz"
authors = [
{name = "Matt Davis", email = "[email protected]"},
]
description = "A web-based viewer for Python profiler output"
readme = "README.rst"
license = { file = "LICENSE.txt" }
requires-python = ">=3.9"
dependencies = ["tornado>=2.0"]
dynamic = ["version"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development"
]
[project.scripts]
snakeviz = "snakeviz.cli:main"
[project.urls]
homepage = "https://jiffyclub.github.io/snakeviz/"
repository = "https://github.com/jiffyclub/snakeviz.git"
changelog = "https://github.com/jiffyclub/snakeviz/blob/master/CHANGES.rst"
[tool.setuptools.dynamic]
version = {attr = "snakeviz.VERSION"}