Skip to content

Commit

Permalink
Create the build_package.py script
Browse files Browse the repository at this point in the history
  • Loading branch information
lmazuel committed Jan 10, 2017
1 parent b429e70 commit 957d2a2
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions build_package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/env python

#-------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#--------------------------------------------------------------------------

import argparse
import os
from subprocess import check_call

DEFAULT_DEST_FOLDER = "./dist"

def create_package(name, dest_folder=DEFAULT_DEST_FOLDER):
os.chdir(name) # Will raise if not exists
check_call(['python', 'setup.py', 'bdist_wheel', '-d', dest_folder])
check_call(['python', 'setup.py', "sdist", "--format", "zip", '-d', dest_folder])

if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Build Azure package.')
parser.add_argument('name', help='The package name')
parser.add_argument('--dest', '-d', default=DEFAULT_DEST_FOLDER,
help='Destination folder. Relative to the package dir. [default: %(default)s]')

args = parser.parse_args()
create_package(args.name, args.dest)

0 comments on commit 957d2a2

Please sign in to comment.