~ubuntu-branches/ubuntu/saucy/jpylyzer/saucy

« back to all changes in this revision

Viewing changes to jpylyzer.spec

  • Committer: Package Import Robot
  • Author(s): Mathieu Malaterre
  • Date: 2013-04-25 09:52:52 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130425095252-2gphc913cwlu4c4j
Tags: 1.9.0-1
* New upstream: improve interoperability between Python 2.7 and Python 3
* Add -doc package for documentation 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- mode: python -*-
 
2
a = Analysis(['jpylyzer.py'],
 
3
             pathex=['F:\\johan\\pythonCode\\jpylyzer'],
 
4
             hiddenimports=[],
 
5
             hookspath=None)
 
6
pyz = PYZ(a.pure)
 
7
exe = EXE(pyz,
 
8
          a.scripts,
 
9
          exclude_binaries=1,
 
10
          name=os.path.join('build\\pyi.win32\\jpylyzer', 'jpylyzer.exe'),
 
11
          debug=False,
 
12
          strip=None,
 
13
          upx=True,
 
14
          console=True )
 
15
coll = COLLECT(exe,
 
16
               a.binaries,
 
17
               a.zipfiles,
 
18
               a.datas,
 
19
               strip=None,
 
20
               upx=True,
 
21
               name=os.path.join('dist', 'jpylyzer'))