We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5271841 + d314ab9 commit ff989a1Copy full SHA for ff989a1
1 file changed
pkgsetup.go
@@ -19,6 +19,12 @@ const (
19
with open("README.md", "r") as fh:
20
long_description = fh.read()
21
22
+
23
+class BinaryDistribution(setuptools.Distribution):
24
+ def has_ext_modules(_):
25
+ return True
26
27
28
setuptools.setup(
29
name="%[1]s%[2]s",
30
version="%[3]s",
@@ -35,6 +41,7 @@ setuptools.setup(
35
41
"Operating System :: OS Independent",
36
42
],
37
43
include_package_data=True,
44
+ distclass=BinaryDistribution,
38
45
)
39
46
`
40
47
0 commit comments