~jayvdb/testscenarios/0.4

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: john.lenton at canonical
  • Date: 2012-05-11 07:40:09 UTC
  • Revision ID: john.lenton@canonical.com-20120511074009-2252hccmin5pftkx
make setup.py work also

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
from distutils.core 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__),
 
7
                                'README'), 'rb').read().decode("utf-8")
7
8
 
8
9
setup(name="testscenarios",
9
10
      version="0.3",