blob: d89b65888272c65427db3a963ee703f0fb25f6e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env python
import os
from distutils.core import setup, Extension
setup(
name = 'multihash',
version = 'svn',
author = 'Vegard Eriksen',
author_email = 'zyp@jvnv.net',
url = 'http://dev.jvnv.net/misc/',
packages = ['multihash'],
ext_modules = [
Extension('multihash._multihash',
['src/' + x for x in os.listdir('src') if x.endswith('.cpp')],
libraries = ["boost_python", "ssl"])])
|