From 7705fda3e07b6c1500cfb3284b8f6896a2f3d6f4 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Sat, 27 Oct 2012 22:41:36 +1300 Subject: Release 0.0.1. --- setup.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index fb7b0c3..c404979 100755 --- a/setup.py +++ b/setup.py @@ -5,6 +5,7 @@ from distutils.core import setup import os.path import extras +testtools = extras.try_import('testtools') def get_version(): @@ -17,7 +18,13 @@ def get_version(): def get_long_description(): readme_path = os.path.join( os.path.dirname(__file__), 'README.rst') - return open(manual_path).read() + return open(readme_path).read() + + +cmdclass = {} + +if testtools is not None: + cmdclass['test'] = testtools.TestCommand setup(name='extras', @@ -33,4 +40,4 @@ setup(name='extras', 'extras', 'extras.tests', ], - cmdclass={'test': testtools.TestCommand}) + cmdclass=cmdclass) -- cgit v1.2.1