You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
489 B
Python
15 lines
489 B
Python
16 years ago
|
#!/usr/bin/python2.4
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='mox',
|
||
|
version='0.5.1',
|
||
|
py_modules=['mox', 'stubout'],
|
||
|
url='http://code.google.com/p/pymox/',
|
||
|
maintainer='pymox maintainers',
|
||
|
maintainer_email='mox-discuss@googlegroups.com',
|
||
|
license='Apache License, Version 2.0',
|
||
|
description='Mock object framework',
|
||
|
long_description='''Mox is a mock object framework for Python based on the
|
||
|
Java mock object framework EasyMock.''',
|
||
|
)
|