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