author | Carsten "Tomcat" Book <cbook@mozilla.com> |
Tue, 30 Jun 2015 10:30:51 +0200 | |
changeset 274663 | 79800010be78122db7c36d4b5833814fdbf28495 |
parent 106852 | 544c405fb456b4cfdc102cbe14d704c4ead17ae0 |
child 680415 | f1abc0c0dcf5789b0dad06c7fd30645c33192e7b |
permissions | -rw-r--r-- |
# This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this file, # You can obtain one at http://mozilla.org/MPL/2.0/. from distutils.core import setup VERSION = '0.1' setup( name='mozboot', description='System bootstrap for building Mozilla projects.', license='MPL 2.0', packages=['mozboot'], version=VERSION, scripts=['bin/bootstrap.py'], )