Mercurial > pub > dyncall > bindings
view python/pydc/setup.py @ 37:8c8f848131c6
- version bump
- better doc
- made calling convention mode reset by default, as only way to specify convention used is via signature string
author | Tassilo Philipp |
---|---|
date | Mon, 13 Apr 2020 20:08:54 +0200 |
parents | 2682a627168c |
children | 1086ca649715 |
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 = '1.1.2' , author = 'Daniel Adler, Tassilo Philipp' , author_email = 'dadler@dyncall.org, tphilip@dyncall.org' , maintainer = 'Daniel Adler, Tassilo Philipp' , maintainer_email = 'dadler@dyncall.org, tphilip@dyncall.org' , url = 'https://www.dyncall.org' , download_url = 'https://www.dyncall.org/download' , classifiers = [] #, packages = ['pydc'] #, package_dir = ['dir'] , ext_modules = [pydcext] , py_modules = ['pydc'] , 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) ''' )