Skip to content

Commit

Permalink
added MANIFEST.in
Browse files Browse the repository at this point in the history
  • Loading branch information
gijsschot committed Apr 14, 2021
1 parent 23541bf commit b0ac208
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include pytom/pytomc/swigModules/*.so
include pytom/pytomc/sh_alignment/frm/swig/*.so
include pytom/pytomc/nufft/*.so
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ def find_executables():

class CustomInstall(install):
def run(self):
commandPullSubmodules = 'git submodule update --recursive --remote; git submodule update --recursive'
process = subprocess.Popen(commandPullSubmodules, shell=True, cwd="./")
process.wait()

commandInstall = 'python3.7 compile.py --target all --pythonVersion 3.7 > logfile.installation.txt'
process = subprocess.Popen(commandInstall, shell=True, cwd="pytomc")
process.wait()
Expand All @@ -37,7 +41,7 @@ def run(self):
name='pytom',
version='0.994',
packages=find_packages(),
package_dir={'pytom':'./'},
package_dir={'pytom':'pytom'},
# package_data={'pytom':["alignment"]},
author='`FridoF',
author_email='[email protected]',
Expand Down

0 comments on commit b0ac208

Please sign in to comment.