Skip to content

Commit

Permalink
Added a spec file for pyinstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
mildbyte committed Nov 22, 2018
1 parent 5476210 commit 97f3553
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ htmlcov
**/__pycache__
**/.eggs
**/*.egg-info

build/
dist/
59 changes: 59 additions & 0 deletions splitgraph.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# -*- mode: python -*-
# Running: pyinstaller -F splitgraph.spec produces a single sgr binary in the dist/ folder
# with libc being the only dynamic dependency (python interpreter included)

block_cipher = None

# per https://github.com/pyinstaller/pyinstaller/wiki/Recipe-Setuptools-Entry-Point
def Entrypoint(dist, group, name, **kwargs):
import pkg_resources

# get toplevel packages of distribution from metadata
def get_toplevel(dist):
distribution = pkg_resources.get_distribution(dist)
if distribution.has_metadata('top_level.txt'):
return list(distribution.get_metadata('top_level.txt').split())
else:
return []

kwargs.setdefault('hiddenimports', [])
packages = []
for distribution in kwargs['hiddenimports']:
packages += get_toplevel(distribution)

kwargs.setdefault('pathex', [])
# get the entry point
ep = pkg_resources.get_entry_info(dist, group, name)
# insert path of the egg at the verify front of the search path
kwargs['pathex'] = [ep.dist.location] + kwargs['pathex']
# script name must not be a valid module name to avoid name clashes on import
script_path = os.path.join(workpath, name + '-script.py')
print("creating script for entry point", dist, group, name)
with open(script_path, 'w') as fh:
print("import", ep.module_name, file=fh)
print("%s.%s()" % (ep.module_name, '.'.join(ep.attrs)), file=fh)
for package in packages:
print("import", package, file=fh)

return Analysis(
[script_path] + kwargs.get('scripts', []),
**kwargs
)

a = Entrypoint('splitgraph', 'console_scripts', 'sgr')
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='sgr',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=True )

0 comments on commit 97f3553

Please sign in to comment.