Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: setup.py

Issue 460153: Add setup.py for installation (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: '' Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « MANIFEST ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4 from distutils.command.install import install
5 from distutils.command.install_lib import install_lib
6 from distutils.command.install_scripts import install_scripts
7
8 setup(
9 name='gyp',
10 version='0.1',
11 description='Generate Your Projects',
12 author='Chromium Authors',
13 author_email='chromium-dev@googlegroups.com',
14 url='http://code.google.com/p/gyp',
15 package_dir = {'': 'pylib'},
16 packages=['gyp', 'gyp.generator'],
17
18 scripts = ['gyp'],
19 cmdclass = {'install': install,
20 'install_lib': install_lib,
21 'install_scripts': install_scripts},
22 )
OLDNEW
« no previous file with comments | « MANIFEST ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698