changeset 1000 | 9af147fc1f1c |
999:71f15c023847 | 1000:9af147fc1f1c |
---|---|
1 #!/usr/bin/python2.4 |
|
2 from distutils.core import setup |
|
3 |
|
4 setup(name='mox', |
|
5 version='0.5.0', |
|
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 ) |