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
|
# SPDX-License-Identifier: BSD-3-Clause
# SPDX-FileCopyrightText: Czech Technical University in Prague
[build-system]
requires = ["setuptools>=39.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "http-relay"
version = "2.1.3"
description = "Relay for HTTP messages (reverse proxy)"
readme = "README.md"
authors = [{ name = "Martin Pecka", email = "peci1@seznam.cz" }]
maintainers = [{ name = "Martin Pecka", email = "peci1@seznam.cz" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking",
"Topic :: Utilities",
]
keywords = ["http", "proxy"]
dependencies = []
requires-python = ">=2.7"
[project.urls]
Homepage = "https://github.com/ctu-vras/http_relay"
[project.scripts]
http-relay = "http_relay.__main__:main"
[project.optional-dependencies]
test = ["pytest"]
|