Files
deb-python-dcos/cli/binary/binary.spec
Charles Ruhland ec496dcd14 Add Marathon pods support (#778)
- Commands detect if Marathon provides the pods API
- Commands supported: add, list, remove, show, update
- Rename `dcos.util.normalize_app_id()` to `normalize_marathod_id_path()`.
- Make Marathon 409 response status error message less confusing
- Marathon deployment table view now includes pods
2016-09-30 14:50:56 -07:00

36 lines
1.1 KiB
Python

# -*- mode: python -*-
block_cipher = None
a = Analysis(['../dcoscli/main.py'],
pathex=[os.path.dirname(os.getcwd()),
os.getcwd(),
'env/lib/python3.4/site-packages',
'../env/lib/python3.4/site-packages',
],
binaries=None,
datas=[('../dcoscli/data/help/*', 'dcoscli/data/help'),
('../../dcos/data/config-schema/*', 'dcos/data/config-schema'),
('../../dcos/data/marathon/*', 'dcos/data/marathon')
],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='dcos',
debug=False,
strip=False,
upx=True,
console=True )