0
|
1 from distutils.core import setup, Extension
|
|
2
|
|
3 pydcext = Extension('pydcext',
|
|
4 sources = ['pydcext.c']
|
|
5 ,libraries=['dyncall_s','dynload_s']
|
|
6 )
|
|
7
|
|
8 setup(
|
4
|
9 name = 'pydc'
|
|
10 , version = '0.9'
|
|
11 , author = 'Daniel Adler'
|
|
12 , author_email = 'dadler@dyncall.org'
|
|
13 , maintainer = 'Daniel Adler'
|
|
14 , maintainer_email = 'dadler@dyncall.org'
|
|
15 , url = 'http://www.dyncall.org'
|
|
16 , description = 'dynamic call bindings for python'
|
0
|
17 , long_description = '''
|
4
|
18 dynamic call library allows to call arbitrary C library functions
|
0
|
19 with a single call code (written in assembly)
|
|
20 '''
|
4
|
21 , download_url = 'http://www.dyncall.org/download'
|
0
|
22 , classifiers=[]
|
|
23 #, packages=['pydc']
|
|
24 #, package_dir['dir']
|
|
25 , ext_modules = [pydcext]
|
|
26 , py_modules = ['pydc']
|
|
27 )
|
|
28
|