setup.py 536 B

12345678910111213141516171819
  1. #!/usr/bin/env python
  2. # Copyright (c) 2009 Google Inc. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. from setuptools import setup
  6. setup(
  7. name='gyp',
  8. version='0.1',
  9. description='Generate Your Projects',
  10. author='Chromium Authors',
  11. author_email='chromium-dev@googlegroups.com',
  12. url='http://code.google.com/p/gyp',
  13. package_dir = {'': 'pylib'},
  14. packages=['gyp', 'gyp.generator'],
  15. entry_points = {'console_scripts': ['gyp=gyp:script_main'] }
  16. )