1
by Robert Collins
Write some fiction. |
1 |
#!/usr/bin/env python
|
2 |
||
3 |
from distutils.core import setup |
|
17
by Robert Collins
Improve setup.py to setup pypi web pages better. |
4 |
import os.path |
5 |
||
6 |
description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read() |
|
1
by Robert Collins
Write some fiction. |
7 |
|
8 |
setup(name="testscenarios", |
|
16
by Robert Collins
Merge patch from Ben Finney making tests with a shortDescription have that altered as well as the id. |
9 |
version="0.2", |
1
by Robert Collins
Write some fiction. |
10 |
description="Testscenarios, a pyunit extension for dependency injection", |
17
by Robert Collins
Improve setup.py to setup pypi web pages better. |
11 |
long_description=description, |
1
by Robert Collins
Write some fiction. |
12 |
maintainer="Robert Collins", |
13 |
maintainer_email="robertc@robertcollins.net", |
|
14 |
url="https://launchpad.net/testscenarios", |
|
15 |
packages=['testscenarios', 'testscenarios.tests'], |
|
17
by Robert Collins
Improve setup.py to setup pypi web pages better. |
16 |
package_dir = {'':'lib'}, |
17 |
classifiers = [ |
|
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', |
|
26 |
],
|
|
1
by Robert Collins
Write some fiction. |
27 |
)
|