Stripped down standalone version of gromacs py api
authorAlexey Shvetsov <alexxy@gentoo.org>
Mon, 11 Jul 2016 20:31:46 +0000 (23:31 +0300)
committerAlexey Shvetsov <alexxy@gentoo.org>
Mon, 11 Jul 2016 20:31:46 +0000 (23:31 +0300)
commit49d6c4759ced85ed1335becd040d215e49fdc504
tree921b258f0ba5bbdfcdf06779ccd2e4ea3f0a2bbf
Stripped down standalone version of gromacs py api

Signed-off-by: Alexey Shvetsov <alexxy@gentoo.org>
41 files changed:
CMakeLists.txt [new file with mode: 0644]
cmake/FindGROMACS.cmake [new file with mode: 0644]
cmake/FindNumPy.cmake [new file with mode: 0644]
cmake/FindPythonLibrary.cmake [new file with mode: 0644]
cmake/FindPythonModule.cmake [new file with mode: 0644]
cmake/FindSIP.cmake [new file with mode: 0644]
cmake/FindSIP.py [new file with mode: 0644]
cmake/PythonCompile.py [new file with mode: 0644]
cmake/PythonMacros.cmake [new file with mode: 0644]
cmake/SIPMacros.cmake [new file with mode: 0644]
src/CMakeLists.txt [new file with mode: 0644]
src/__init__.py [new file with mode: 0644]
src/include/numpy_conv.h [new file with mode: 0644]
src/sip/commandline/Commandline.sip [new file with mode: 0644]
src/sip/commandline/cmdlineoptionsmodule.sip [new file with mode: 0644]
src/sip/commandline/cmdlineparser.sip [new file with mode: 0644]
src/sip/definitions.sip [new file with mode: 0644]
src/sip/options/Options.sip [new file with mode: 0644]
src/sip/options/abstractoption.sip [new file with mode: 0644]
src/sip/options/basicoptions.sip [new file with mode: 0644]
src/sip/options/filenameoption.sip [new file with mode: 0644]
src/sip/options/ioptionsbehavior.sip [new file with mode: 0644]
src/sip/options/ioptionscontainer.sip [new file with mode: 0644]
src/sip/options/options.sip [new file with mode: 0644]
src/sip/options/pyoptionsholder.sip [new file with mode: 0644]
src/sip/options/selectionoption.sip [new file with mode: 0644]
src/sip/selection/Selection.sip [new file with mode: 0644]
src/sip/selection/selection.sip [new file with mode: 0644]
src/sip/string.sip [new file with mode: 0644]
src/sip/topology/Topology.sip [new file with mode: 0644]
src/sip/topology/atoms.sip [new file with mode: 0644]
src/sip/topology/pstringlistwrapper.sip [new file with mode: 0644]
src/sip/topology/topology.sip [new file with mode: 0644]
src/sip/trajectoryanalysis/TrajectoryAnalysis.sip [new file with mode: 0644]
src/sip/trajectoryanalysis/analysisdata.sip [new file with mode: 0644]
src/sip/trajectoryanalysis/analysismodule.sip [new file with mode: 0644]
src/sip/trajectoryanalysis/analysissettings.sip [new file with mode: 0644]
src/sip/trajectoryanalysis/cmdlinerunner.sip [new file with mode: 0644]
src/sip/trajectoryanalysis/modules.sip [new file with mode: 0644]
src/sip/trajectoryanalysis/runnercommon.sip [new file with mode: 0644]
src/test.py [new file with mode: 0644]