~testtools-committers/testscenarios/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robert Collins
  • Date: 2015-05-04 00:12:16 UTC
  • Revision ID: robertc@robertcollins.net-20150504001216-ff26ybf0lrejmr2s
0.4
~~~

IMPROVEMENTS
------------

* Python 3.2 support added. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
 
from distutils.core import setup
 
3
from setuptools import setup
4
4
import os.path
5
5
 
6
 
description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
 
6
description = open(os.path.join(os.path.dirname(__file__), 'README'), 'rt').read()
7
7
 
8
8
setup(name="testscenarios",
9
 
      version="0.3",
 
9
      version="0.4",
10
10
      description="Testscenarios, a pyunit extension for dependency injection",
11
11
      long_description=description,
12
12
      maintainer="Robert Collins",
21
21
          'License :: OSI Approved :: Apache Software License',
22
22
          'Operating System :: OS Independent',
23
23
          'Programming Language :: Python',
 
24
          'Programming Language :: Python :: 3',
24
25
          'Topic :: Software Development :: Quality Assurance',
25
26
          'Topic :: Software Development :: Testing',
26
27
          ],
 
28
      install_requires = [
 
29
        'testtools',
 
30
        ]
27
31
      )