~jayvdb/testscenarios/fix-py3-tests

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: John Vandenberg
  • Author(s): Robert Collins
  • Date: 2015-04-26 04:43:40 UTC
  • Revision ID: jayvdb@gmail.com-20150426044340-bwwocyugr4x9927i
Import pypi release 0.4

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 = open(os.path.join(os.path.dirname(__file__),
7
 
                                'README'), 'rb').read().decode("utf-8")
 
6
description = open(os.path.join(os.path.dirname(__file__), 'README'), 'rt').read()
8
7
 
9
8
setup(name="testscenarios",
10
 
      version="0.3",
 
9
      version="0.4",
11
10
      description="Testscenarios, a pyunit extension for dependency injection",
12
11
      long_description=description,
13
12
      maintainer="Robert Collins",
22
21
          'License :: OSI Approved :: Apache Software License',
23
22
          'Operating System :: OS Independent',
24
23
          'Programming Language :: Python',
 
24
          'Programming Language :: Python :: 3',
25
25
          'Topic :: Software Development :: Quality Assurance',
26
26
          'Topic :: Software Development :: Testing',
27
27
          ],
 
28
      install_requires = [
 
29
        'testtools',
 
30
        ]
28
31
      )