annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
1 from distutils.core import setup, Extension
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
2
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
3 pydcext = Extension('pydcext',
28
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
4 sources = ['pydcext.c']
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
5 , libraries = ['dyncall_s','dynload_s']
0
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
6 )
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
7
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
8 setup(
4
4c5019f00f5b - python binding cleanup
cslag
parents: 0
diff changeset
9 name = 'pydc'
37
8c8f848131c6 - version bump
Tassilo Philipp
parents: 34
diff changeset
10 , version = '1.1.2'
8c8f848131c6 - version bump
Tassilo Philipp
parents: 34
diff changeset
11 , author = 'Daniel Adler, Tassilo Philipp'
8c8f848131c6 - version bump
Tassilo Philipp
parents: 34
diff changeset
12 , author_email = 'dadler@dyncall.org, tphilip@dyncall.org'
8c8f848131c6 - version bump
Tassilo Philipp
parents: 34
diff changeset
13 , maintainer = 'Daniel Adler, Tassilo Philipp'
8c8f848131c6 - version bump
Tassilo Philipp
parents: 34
diff changeset
14 , maintainer_email = 'dadler@dyncall.org, tphilip@dyncall.org'
28
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
15 , url = 'https://www.dyncall.org'
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
16 , download_url = 'https://www.dyncall.org/download'
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
17 , classifiers = []
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
18 #, packages = ['pydc']
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
19 #, package_dir = ['dir']
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
20 , ext_modules = [pydcext]
edbbd467f50a python binding:
Tassilo Philipp
parents: 24
diff changeset
21 , py_modules = ['pydc']
4
4c5019f00f5b - python binding cleanup
cslag
parents: 0
diff changeset
22 , description = 'dynamic call bindings for python'
0
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
23 , long_description = '''
4
4c5019f00f5b - python binding cleanup
cslag
parents: 0
diff changeset
24 dynamic call library allows to call arbitrary C library functions
0
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
25 with a single call code (written in assembly)
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
26 '''
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
27 )
0cfcc391201f initial from svn dyncall-1745
Daniel Adler
parents:
diff changeset
28