forked from motmot/fastimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (19 loc) · 841 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import os, sys
from setuptools import setup, find_packages, Extension
from Cython.Build import cythonize
setup(name="motmot.FastImage",
author="Andrew Straw",
author_email="[email protected]",
description="Pythonic API for the framewave SIMD library",
url='http://code.astraw.com/projects/motmot',
license="BSD",
version='0.5.6', # also in motmot/FastImage/__init__.py
namespace_packages=['motmot'],
packages = find_packages(),
ext_modules=cythonize([Extension(name="motmot.FastImage.FastImage",
sources=['src/FastImage.pyx',
'src/fic.c','src/fic_sobel.c'],
libraries=['fwBase','fwImage'],
),
]),
)