We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c5e1550 + 28d1db1 commit c25f9b6Copy full SHA for c25f9b6
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[build-system]
2
build-backend = "setuptools.build_meta"
3
-requires = ["setuptools==80.9.0"]
+requires = ["setuptools>=80.9.0,<=82.0.1"]
4
5
[project]
6
name = "httptools"
@@ -18,7 +18,11 @@ authors = [
18
{name = "Yury Selivanov", email="yury@magic.io"},
19
]
20
license = "MIT"
21
-license-files = ["LICENSE"]
+license-files = [
22
+ "LICENSE",
23
+ "vendor/http-parser/LICENSE-MIT",
24
+ "vendor/llhttp/LICENSE",
25
+]
26
description = "A collection of framework independent HTTP protocol utils."
27
readme = "README.md"
28
setup.py
@@ -7,7 +7,7 @@
7
from setuptools.command.build_ext import build_ext as build_ext
8
9
10
-CFLAGS = ['-O2']
+CFLAGS = ['-O2', '-DCYTHON_FREETHREADING_COMPATIBLE=1']
11
12
ROOT = pathlib.Path(__file__).parent
13
0 commit comments