forked from mtr/python-mybad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (55 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
58 lines (55 loc) · 1.41 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",
"setuptools-git",
"setupextras",
"tox",
"tox-travis"
]
build-backend = "setuptools.build_meta"
[project]
name = "mybad"
version = "0.3.0"
description = "My friendly error base class - for Python."
keywords = [
"error",
"errors",
"baseclass",
"meta",
"debug",
"inspector",
"pretty",
"color",
"colors",
"detailed",
"stacktrace",
]
authors = [
{ name = "Jonas Grimfelt", email = "grimen@gmail.com" }
]
maintainers = [
{ name = "Martin Thorsen Ranang", email = "mtr@ranang.org" }
]
readme = "README.md"
license = { file = "MIT-LICENSE" }
dynamic = [
"dependencies",
"optional-dependencies",
]
classifiers = [
"Topic :: Software Development :: Libraries",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
[project.urls]
url = "https://github.com/grimen/python-mybad"
download_url = "https://github.com/grimen/python-mybad"
"Homepage" = "https://github.com/grimen/python-mybad"
"Bug Tracker" = "https://github.com/grimen/python-mybad/issues"