We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4742c7f commit 0c52eefCopy full SHA for 0c52eef
example/README.md
@@ -15,16 +15,16 @@ from setuptools import setup
15
setup(
16
...,
17
install_requires=[
18
- "brotli; implementation_name == 'cpython'",
19
- "brotlicffi; implementation_name != 'cpython'"
+ "brotli; platform_python_implementation == 'CPython'",
+ "brotlicffi; platform_python_implementation != 'CPython'"
20
]
21
)
22
```
23
24
25
# requirements.txt:
26
-brotli; implementation_name == 'cpython'
27
-brotlicffi; implementation_name != 'cpython'
+brotli; platform_python_implementation == 'CPython'
+brotlicffi; platform_python_implementation != 'CPython'
28
29
30
...then you can import the bindings in your project like so:
0 commit comments