-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 955 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 955 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "backlash"
version = "0.4.1"
description = "Standalone WebOb port of the Werkzeug Debugger with Python3 support meant to replace WebError in TurboGears2"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "LICENSE" }
authors = [
{ name = "Alessandro Molina", email = "alessandro@molina.fyi" }
]
keywords = ["wsgi", "debugger", "webob", "python3", "web"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Internet :: WWW/HTTP :: WSGI"
]
dependencies = [
"WebOb"
]
[project.urls]
Homepage = "https://github.com/TurboGears/backlash"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
exclude = ["examples", "tests"]