Sha256: 4c5f197ac0a6e170234a2e23976fea44d937db725e307735a7d64c6567deb055

Contents?: true

Size: 788 Bytes

Versions: 39

Compression:

Stored size: 788 Bytes

Contents

#!/usr/bin/env python

# Copyright (c) 2009 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

from distutils.core import setup
from distutils.command.install import install
from distutils.command.install_lib import install_lib
from distutils.command.install_scripts import install_scripts

setup(
  name='gyp',
  version='0.1',
  description='Generate Your Projects',
  author='Chromium Authors',
  author_email='chromium-dev@googlegroups.com',
  url='http://code.google.com/p/gyp',
  package_dir = {'': 'pylib'},
  packages=['gyp', 'gyp.generator'],

  scripts = ['gyp'],
  cmdclass = {'install': install,
              'install_lib': install_lib,
              'install_scripts': install_scripts},
)

Version data entries

39 entries across 39 versions & 5 rubygems

Version Path
libv8-3.16.14.19.1 vendor/gyp/setup.py
libv8-3.16.14.19 vendor/gyp/setup.py
libv8-3.16.14.18 vendor/gyp/setup.py
arcabouco-0.2.13 vendor/bundle/gems/libv8-3.16.14.17/vendor/gyp/setup.py
libv8-3.16.14.17 vendor/gyp/setup.py
libv8-3.16.14.16 vendor/gyp/setup.py
libv8-3.16.14.15 vendor/gyp/setup.py
libv8-3.16.14.14 vendor/gyp/setup.py
libv8-tmpfork-3.16.14.13 vendor/gyp/setup.py
libv8-3.16.14.13 vendor/gyp/setup.py
libv8-3.16.14.12 vendor/gyp/setup.py
libv8-3.16.14.11 vendor/gyp/setup.py
libv8-3.16.14.10 vendor/gyp/setup.py
libv8-3.16.14.8 vendor/gyp/setup.py
libv8-3.16.14.8.rc1 vendor/gyp/setup.py
libv8-3.16.14.7 vendor/gyp/setup.py
libv8-3.16.14.6 vendor/gyp/setup.py
libv8-3.16.14.5 vendor/gyp/setup.py
libv8-3.16.14.4 vendor/gyp/setup.py
libv8-3.16.14.3 vendor/gyp/setup.py