~ntt-pf-lab/nova/monkey_patch_notification

« back to all changes in this revision

Viewing changes to vendor/pymox/setup.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python2.4
 
2
from distutils.core import setup
 
3
 
 
4
setup(name='mox',
 
5
      version='0.5.2',
 
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
      )