File: setup.py

package info (click to toggle)
pillow-sane 2.9.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 300 kB
  • sloc: ansic: 703; python: 341; makefile: 231; sh: 9
file content (14 lines) | stat: -rw-r--r-- 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import Extension, setup

ext_modules = [
    Extension(
        "_sane",
        include_dirs=[],
        libraries=["sane"],
        define_macros=[],
        extra_compile_args=[],
        sources=["_sane.c"],
    )
]

setup(ext_modules=ext_modules)