-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 1 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["prettystack"]
[project]
name = "prettystack"
authors = [
{name = "Colm O'Connor", email = "colm.oconnor.github@gmail.com"},
]
description = "Output pretty stack traces."
license = {text = "MIT"}
requires-python = ">=3.7.0"
keywords = ["stacktrace"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Natural Language :: English",
]
dependencies = [
"colorama>=0.4.0",
"jinja2>=2.10",
"path.py>=9.1",
]
dynamic = ["version", "readme"]
[project.urls]
homepage = "https://hitchdev.com/prettystack"
documentation = "https://hitchdev.com/prettystack/using"
repository = "https://github.com/crdoconnor/prettystack"
changelog = "https://hitchdev.com/prettystack/changelog"
[tool.setuptools.dynamic]
readme = {file = ["README.md",], content-type = "text/markdown"}
version = {file = "VERSION"}