OLD | NEW |
---|---|
(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 ) | |
OLD | NEW |