Mercurial > pub > dyncall > bindings
annotate python/pydc/setup.py @ 50:edf5c85de5ac
put pyi next to so for mypy to pick it up, directly
author | Tassilo Philipp |
---|---|
date | Sat, 14 Nov 2020 21:18:09 +0100 |
parents | c21d1c2c84e1 |
children | 6387d39ecce2 |
rev | line source |
---|---|
0 | 1 from distutils.core import setup, Extension |
2 | |
46
c21d1c2c84e1
- removed pydc.py wrapper overhead (which only called pydcext.so functions, directly, anyways)
Tassilo Philipp
parents:
45
diff
changeset
|
3 pydcext = Extension('pydc', |
c21d1c2c84e1
- removed pydc.py wrapper overhead (which only called pydcext.so functions, directly, anyways)
Tassilo Philipp
parents:
45
diff
changeset
|
4 sources = ['pydc.c'] |
28 | 5 , libraries = ['dyncall_s','dynload_s'] |
0 | 6 ) |
7 | |
8 setup( | |
4 | 9 name = 'pydc' |
50
edf5c85de5ac
put pyi next to so for mypy to pick it up, directly
Tassilo Philipp
parents:
46
diff
changeset
|
10 , version = '1.1.6' |
37 | 11 , author = 'Daniel Adler, Tassilo Philipp' |
12 , author_email = 'dadler@dyncall.org, tphilip@dyncall.org' | |
13 , maintainer = 'Daniel Adler, Tassilo Philipp' | |
14 , maintainer_email = 'dadler@dyncall.org, tphilip@dyncall.org' | |
28 | 15 , url = 'https://www.dyncall.org' |
16 , download_url = 'https://www.dyncall.org/download' | |
17 , classifiers = [] | |
18 #, packages = ['pydc'] | |
19 #, package_dir = ['dir'] | |
20 , ext_modules = [pydcext] | |
4 | 21 , description = 'dynamic call bindings for python' |
0 | 22 , long_description = ''' |
46
c21d1c2c84e1
- removed pydc.py wrapper overhead (which only called pydcext.so functions, directly, anyways)
Tassilo Philipp
parents:
45
diff
changeset
|
23 library allowing to call arbitrary C library functions dynamically, |
c21d1c2c84e1
- removed pydc.py wrapper overhead (which only called pydcext.so functions, directly, anyways)
Tassilo Philipp
parents:
45
diff
changeset
|
24 based on a single call kernel (so no interface generation used/required) |
0 | 25 ''' |
50
edf5c85de5ac
put pyi next to so for mypy to pick it up, directly
Tassilo Philipp
parents:
46
diff
changeset
|
26 , package_data = {'': ['pydc.pyi']} |
edf5c85de5ac
put pyi next to so for mypy to pick it up, directly
Tassilo Philipp
parents:
46
diff
changeset
|
27 , packages = [''] |
0 | 28 ) |
29 |