~jayvdb/testscenarios/0.4

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robert Collins
  • Date: 2010-02-01 05:05:42 UTC
  • Revision ID: robertc@robertcollins.net-20100201050542-wswgofzi5hr18rk0
Improve setup.py to setup pypi web pages better.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
3
from distutils.core import setup
 
4
import os.path
 
5
 
 
6
description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
4
7
 
5
8
setup(name="testscenarios",
6
9
      version="0.2",
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'},
 
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
          ],
13
27
      )