Skip to content

Commit ae9eb29

Browse files
committed
chore: publish 0.2 release
1 parent d4a6aba commit ae9eb29

6 files changed

Lines changed: 16 additions & 27 deletions

File tree

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
httoop (0.2.0) unstable; urgency=medium
2+
3+
* Add support for Python 3.8 - 3.14, drop support for Python 2.7 - 3.7
4+
5+
-- Florian Best <space@wechall.net> Wed, 29 Apr 2026 03:13:50 +0200
6+
17
httoop (0.1.1) unstable; urgency=medium
28

39
* various fixes regarding authentication, compression, etc.

debian/compat

Lines changed: 0 additions & 1 deletion
This file was deleted.

debian/control

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,11 @@ Priority: optional
44
Maintainer: Florian Best <space@wechall.net>
55
Standards-Version: 3.9.8
66
Build-Depends:
7+
debhelper-compat (=13),
78
debhelper,
89
dh-python,
9-
python-all,
10-
python-debian,
10+
pybuild-plugin-pyproject,
1111
python3-all,
12-
python3-debian,
13-
14-
Package: python-httoop
15-
Architecture: all
16-
Depends:
17-
${misc:Depends},
18-
${python:Depends},
19-
Provides:
20-
${python:Provides},
21-
Recommends:
22-
python-defusedxml,
23-
python-uritemplate,
24-
Description: HTTOOP - An object oriented HTTP library.
25-
Httoop can be used to parse, compose and work with HTTP-Request- and Response-Messages.
26-
It is an generic library for implementing HTTP servers, clients, caches and proxies.
2712

2813
Package: python3-httoop
2914
Architecture: all

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Upstream-Name: Florian Best
33
Upstream-Contact: <space@wechall.net>
44

55
Files: *
6-
Copyright: 2013-2020 Florian Best
6+
Copyright: 2013-2026 Florian Best
77
License: MIT
88
Permission is hereby granted, free of charge, to any person obtaining a copy of
99
this software and associated documentation files (the "Software"), to deal in

httoop/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from httoop.messages import Protocol
33

44

5-
__version__ = '0.1.1'
5+
__version__ = '0.2.0'
66
UserAgentHeader = __UserAgent.parse(b'httoop/%s' % (__version__.encode(),))
77
ServerHeader = __Server.parse(b'httoop/%s' % (__version__.encode(),))
88
ServerProtocol = Protocol((1, 1))

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61"]
2+
requires = ["setuptools>=70", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.setuptools.dynamic]
@@ -8,18 +8,17 @@ version = { attr = "httoop.version.__version__" }
88
[project]
99
name = "httoop"
1010
dynamic = ["version"]
11+
license = { text = "MIT" }
1112
description = "object oriented HTTP protocol library"
1213
readme = { file = "README.md", content-type = "text/markdown" }
1314
authors = [
1415
{ name = "SpaceOne", email = "space@wechall.net" }
1516
]
16-
license = { text = "MIT" }
1717
keywords = ["HTTP", "web", "proxy", "cache", "client", "server", "library"]
1818
classifiers = [
1919
"Environment :: Web Environment",
2020
"Intended Audience :: Developers",
2121
"Intended Audience :: Information Technology",
22-
"License :: OSI Approved :: MIT License",
2322
"Natural Language :: English",
2423
"Operating System :: POSIX :: BSD",
2524
"Operating System :: POSIX :: Linux",
@@ -55,13 +54,13 @@ test = [
5554
[tool.pytest.ini_options]
5655
addopts = "-s -l -vv --tb=native --strict-markers --cov=httoop --cov-report=xml --cov-report=term-missing"
5756

58-
[tool.setuptools.packages.find]
59-
where = ["."]
60-
exclude = ["tests", "tests.*"]
61-
6257
[tool.setuptools]
6358
zip-safe = true
6459

60+
[tool.setuptools.packages.find]
61+
include = ["httoop*"]
62+
exclude = ["debian.*", "tests.*", "rfc.*"]
63+
6564
[project.urls]
6665
Homepage = "https://github.com/spaceone/httoop"
6766

0 commit comments

Comments
 (0)