File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,25 @@ installation options check the `documentation
99
99
100
100
.. _differences-with-zlib-and-gzip-modules :
101
101
102
+ python-isal as a dependency in your project
103
+ -------------------------------------------
104
+
105
+ Python-isal supports a limited amount of platforms for which wheels have been
106
+ made available. To prevent your users from running into issues when installing
107
+ your project please list a python-isal dependency as follows.
108
+
109
+ ``setup.cfg ``::
110
+
111
+ install_requires =
112
+ isal; platform.python_implementation == 'CPython' and (platform.machine == "x86_64" or platform.machine == "AMD64")
113
+
114
+ ``setup.py ``::
115
+
116
+ extras_require={
117
+ ":platform.python_implementation == 'CPython' and "
118
+ "(platform.machine == 'x86_64' or platform.machine == 'AMD64')": ['isal']
119
+ },
120
+
102
121
Differences with zlib and gzip modules
103
122
--------------------------------------
104
123
You can’t perform that action at this time.
0 commit comments