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 5690c32 commit 2345ad1Copy full SHA for 2345ad1
setup.py
@@ -1,9 +1,6 @@
1
from pathlib import Path
2
-import sysconfig
3
-from setuptools import setup, find_packages
+from setuptools import setup, find_packages, Distribution
4
from sysconfig import get_platform
5
-
6
-import setuptools
7
from version import SDK_VERSION
8
import platform
9
import os
@@ -22,7 +19,7 @@ def finalize_options(self):
22
19
except ImportError:
23
20
bdist_wheel = None
24
21
25
-class BinaryDistribution (setuptools.Distribution):
+class BinaryDistribution(Distribution):
26
def has_ext_modules(self):
27
return True
28
0 commit comments