Skip to content

Commit 298b5a9

Browse files
authored
Remove Feature module to match setuptools >=46.0.0
pypa/setuptools#65 pypa/setuptools#2017 openslide/openslide#287
1 parent 8e2c948 commit 298b5a9

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

setup.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from setuptools import setup, Extension, Feature
2+
from setuptools import setup, Extension
33

44
# Load version string
55
_verfile = os.path.join(os.path.dirname(__file__), 'openslide', '_version.py')
@@ -15,15 +15,9 @@
1515
packages=[
1616
'openslide',
1717
],
18-
features={
19-
'performance': Feature(
20-
'performance-enhancing extension module',
21-
standard=True,
22-
ext_modules=[
23-
Extension('openslide._convert', ['openslide/_convert.c']),
24-
],
25-
),
26-
},
18+
ext_modules=[
19+
Extension('openslide._convert', ['openslide/_convert.c']),
20+
],
2721
test_suite='tests',
2822
maintainer='OpenSlide project',
2923
maintainer_email='[email protected]',

0 commit comments

Comments
 (0)