1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# [sra] Changes here are specific to the RPKI project, in order to get POW linked
# against a copy of the OpenSSL libraries with the right options enabled.
# Unlike the other changes to this package, I don't expect this one to be
# useful to other POW users.
from distutils.core import setup, Extension
import sys, os, cfgparse
print 'parsing configuration file'
oidinfo = cfgparse.Parser('dumpasn1.cfg')
print 'writing object module'
oidinfo.dumpobjs('lib/_objects.py')
print 'writing oid module'
oidinfo.dumpoids('lib/_oids.py')
library_dirs = [ "../../openssl/openssl" ]
include_dirs = [ library_dirs[0] + "/include" ]
libraries = [ "ssl", "crypto" ]
setup(name='POW',
version='0.7',
description='Python OpenSSL Wrappers',
author='Peter Shannon',
author_email='peter_shannon@yahoo.com',
license='BSD',
url='http://www.sourceforge.net/projects/pow',
packages=['POW'],
package_dir={'POW':'lib'},
ext_modules=[
Extension('POW._POW',
['POW.c'],
libraries=libraries,
library_dirs=library_dirs,
include_dirs=include_dirs)
])
os.remove('lib/_objects.py')
os.remove('lib/_oids.py')
|