We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a13db6b commit 0b16a80Copy full SHA for 0b16a80
1 file changed
setup.py
@@ -1,9 +1,9 @@
1
#!/usr/bin/env python
2
3
-from setuptools import setup
4
-
5
from distutils.core import Extension
6
+from setuptools import setup
+
7
8
setup(
9
name='getdents',
@@ -25,7 +25,7 @@
25
packages=['getdents'],
26
include_package_data=True,
27
zip_safe=False,
28
- ext_modules = [
+ ext_modules=[
29
Extension('getdents._getdents', sources=['getdents/_getdents.c']),
30
],
31
setup_requires=['pytest-runner'],
0 commit comments