-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.36 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
54
55
56
57
58
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pystackflame"
version = "0.1.4"
description = "Generate flamecharts and error graphs from python stacktraces"
authors = [{name = "Alexander"}]
license = {text = "MIT"}
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Testing",
"Topic :: System :: Monitoring",
"Topic :: System :: Logging",
"Topic :: Utilities",
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"click>=8.2.0",
]
[project.scripts]
pystackflame = "pystackflame.__main__:cli"
[tool.setuptools.packages.find]
include = ["pystackflame", "pystackflame.*"]
[tool.ruff]
line-length = 125
exclude = [
"build",
".venv",
"*.egg-info"
]
lint.extend-select = [
"I",
"F",
"PL",
"UP",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"ruff>=0.11.10",
]