Add initial support for python bindings
authorMaxim Koltsov <maksbotan@gentoo.org>
Sun, 12 Oct 2014 08:58:33 +0000 (12:58 +0400)
committerMaxim Koltsov <maksbotan@gentoo.org>
Sun, 12 Oct 2014 08:58:33 +0000 (12:58 +0400)
commit07e8a2a25ab5a62f63af77fe0dd1405cd41ee5ce
tree9a30bdf4f1696eba33eed05b7281e8bb424cfb4b
parente336499626008e8ff06b1648c1b7afbab38c949b
Add initial support for python bindings

Add minimal SIP-based bindings required to implement trajectory analysis
module in Python and run it
18 files changed:
src/pygromacs/CMakeLists.txt [new file with mode: 0644]
src/pygromacs/__init__.py [new file with mode: 0644]
src/pygromacs/cmake/modules/FindGROMACS.cmake [new file with mode: 0644]
src/pygromacs/cmake/modules/FindPythonLibrary.cmake [new file with mode: 0644]
src/pygromacs/cmake/modules/FindSIP.cmake [new file with mode: 0644]
src/pygromacs/cmake/modules/FindSIP.py [new file with mode: 0644]
src/pygromacs/cmake/modules/PythonCompile.py [new file with mode: 0644]
src/pygromacs/cmake/modules/PythonMacros.cmake [new file with mode: 0644]
src/pygromacs/cmake/modules/SIPMacros.cmake [new file with mode: 0644]
src/pygromacs/include/vec.h [new file with mode: 0644]
src/pygromacs/sip/definitions.sip [new file with mode: 0644]
src/pygromacs/sip/options/Options.sip [new file with mode: 0644]
src/pygromacs/sip/options/options.sip [new file with mode: 0644]
src/pygromacs/sip/string.sip [new file with mode: 0644]
src/pygromacs/sip/trajectoryanalysis/TrajectoryAnalysis.sip [new file with mode: 0644]
src/pygromacs/sip/trajectoryanalysis/analysismodule.sip [new file with mode: 0644]
src/pygromacs/sip/trajectoryanalysis/analysissettings.sip [new file with mode: 0644]
src/pygromacs/test.py [new file with mode: 0644]