michael@0: #!/usr/bin/env python michael@0: michael@0: # Copyright (c) 2009 Google Inc. All rights reserved. michael@0: # Use of this source code is governed by a BSD-style license that can be michael@0: # found in the LICENSE file. michael@0: michael@0: from distutils.core import setup michael@0: from distutils.command.install import install michael@0: from distutils.command.install_lib import install_lib michael@0: from distutils.command.install_scripts import install_scripts michael@0: michael@0: setup( michael@0: name='gyp', michael@0: version='0.1', michael@0: description='Generate Your Projects', michael@0: author='Chromium Authors', michael@0: author_email='chromium-dev@googlegroups.com', michael@0: url='http://code.google.com/p/gyp', michael@0: package_dir = {'': 'pylib'}, michael@0: packages=['gyp', 'gyp.generator'], michael@0: michael@0: scripts = ['gyp'], michael@0: cmdclass = {'install': install, michael@0: 'install_lib': install_lib, michael@0: 'install_scripts': install_scripts}, michael@0: )