Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | #!/usr/bin/env python |
michael@0 | 2 | |
michael@0 | 3 | # Copyright (c) 2009 Google Inc. All rights reserved. |
michael@0 | 4 | # Use of this source code is governed by a BSD-style license that can be |
michael@0 | 5 | # found in the LICENSE file. |
michael@0 | 6 | |
michael@0 | 7 | from distutils.core import setup |
michael@0 | 8 | from distutils.command.install import install |
michael@0 | 9 | from distutils.command.install_lib import install_lib |
michael@0 | 10 | from distutils.command.install_scripts import install_scripts |
michael@0 | 11 | |
michael@0 | 12 | setup( |
michael@0 | 13 | name='gyp', |
michael@0 | 14 | version='0.1', |
michael@0 | 15 | description='Generate Your Projects', |
michael@0 | 16 | author='Chromium Authors', |
michael@0 | 17 | author_email='chromium-dev@googlegroups.com', |
michael@0 | 18 | url='http://code.google.com/p/gyp', |
michael@0 | 19 | package_dir = {'': 'pylib'}, |
michael@0 | 20 | packages=['gyp', 'gyp.generator'], |
michael@0 | 21 | |
michael@0 | 22 | scripts = ['gyp'], |
michael@0 | 23 | cmdclass = {'install': install, |
michael@0 | 24 | 'install_lib': install_lib, |
michael@0 | 25 | 'install_scripts': install_scripts}, |
michael@0 | 26 | ) |