forked from luksan/pyfprint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 659 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Python bindings for libfprint"""
import os
from distutils.core import setup, Extension
setup(name="pyfprint",
version="0.0",
description="Python bindings for the libfprint fingerprinting library",
author="Lukas Sandström",
author_email="luksan@gmail.com",
url="http://repo.or.cz/w/pyfprint.git",
license="GPL-2",
packages=["pyfprint"],
ext_modules=[Extension('pyfprint._pyfprint_swig',
['pyfprint/pyfprint_swig.i'],
swig_opts=['-modern'],
libraries=['fprint'],)],
)