blob: 75a42558d8026bd685cd6c0db40537ff7f7f47c7 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001#!/usr/bin/env python
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
7from setuptools import setup
8
9setup(
10 name='gyp',
11 version='0.1',
12 description='Generate Your Projects',
13 author='Chromium Authors',
14 author_email='chromium-dev@googlegroups.com',
15 url='http://code.google.com/p/gyp',
16 package_dir = {'': 'pylib'},
17 packages=['gyp', 'gyp.generator'],
18 entry_points = {'console_scripts': ['gyp=gyp:script_main'] }
19)