Mercurial > pub > dyncall > bindings
view python/pydc/setup.py @ 20:77ca609422f1
- first working build of new java binding
author | cslag |
---|---|
date | Wed, 30 Mar 2016 02:40:56 +0200 |
parents | 4c5019f00f5b |
children | 681db37a300c |
line wrap: on
line source
from distutils.core import setup, Extension pydcext = Extension('pydcext', sources = ['pydcext.c'] ,libraries=['dyncall_s','dynload_s'] ) setup( name = 'pydc' , version = '0.9' , author = 'Daniel Adler' , author_email = 'dadler@dyncall.org' , maintainer = 'Daniel Adler' , maintainer_email = 'dadler@dyncall.org' , url = 'http://www.dyncall.org' , description = 'dynamic call bindings for python' , long_description = ''' dynamic call library allows to call arbitrary C library functions with a single call code (written in assembly) ''' , download_url = 'http://www.dyncall.org/download' , classifiers=[] #, packages=['pydc'] #, package_dir['dir'] , ext_modules = [pydcext] , py_modules = ['pydc'] )