Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 | ) |