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

Side by Side Diff: tests/pymox/setup.py

Issue 562031: Fix licensing headers and move most third party code to third_party/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: '' Created 10 years, 10 months 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
OLDNEW
(Empty)
1 #!/usr/bin/python2.4
2 from distutils.core import setup
3
4 setup(name='mox',
5 version='0.5.1',
6 py_modules=['mox', 'stubout'],
7 url='http://code.google.com/p/pymox/',
8 maintainer='pymox maintainers',
9 maintainer_email='mox-discuss@googlegroups.com',
10 license='Apache License, Version 2.0',
11 description='Mock object framework',
12 long_description='''Mox is a mock object framework for Python based on the
13 Java mock object framework EasyMock.''',
14 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698