1
1
#!/usr/bin/env python
3
3
from distutils.core import setup
6
description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
5
8
setup(name="testscenarios",
7
10
description="Testscenarios, a pyunit extension for dependency injection",
11
long_description=description,
8
12
maintainer="Robert Collins",
9
13
maintainer_email="robertc@robertcollins.net",
10
14
url="https://launchpad.net/testscenarios",
11
15
packages=['testscenarios', 'testscenarios.tests'],
12
package_dir = {'':'lib'}
16
package_dir = {'':'lib'},
18
'Development Status :: 6 - Mature',
19
'Intended Audience :: Developers',
20
'License :: OSI Approved :: BSD License',
21
'License :: OSI Approved :: Apache Software License',
22
'Operating System :: OS Independent',
23
'Programming Language :: Python',
24
'Topic :: Software Development :: Quality Assurance',
25
'Topic :: Software Development :: Testing',