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 42934ca commit 911b913Copy full SHA for 911b913
setup.py
@@ -1,18 +1,19 @@
1
-from distutils.core import setup, Extension
+import setuptools
2
3
-sane = Extension('_sane',
+sane = setuptools.Extension('_sane',
4
include_dirs=[],
5
libraries=['sane'],
6
define_macros=[],
7
extra_compile_args=[],
8
sources=['_sane.c'])
9
10
-setup(name='python-sane',
+setuptools.setup(name='python-sane',
11
version='2.9.0',
12
description='This is the python-sane package',
13
url='https://github.com/python-pillow/Sane',
14
maintainer='Sandro Mani',
15
maintainer_email='[email protected]',
16
+ packages=setuptools.find_packages(),
17
classifiers=[
18
"Programming Language :: Python :: 3",
19
"Programming Language :: Python :: 3.6",
0 commit comments