From dc4bb92725ecc503296848ebd3f6e7a336baa87b Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Sat, 2 Mar 2013 21:30:37 -0500 Subject: [PATCH] Adding in some slight tweaks. --- bin/hytest | 7 +++++++ setup.py | 3 +++ 2 files changed, 10 insertions(+) create mode 100755 bin/hytest diff --git a/bin/hytest b/bin/hytest new file mode 100755 index 0000000..c402824 --- /dev/null +++ b/bin/hytest @@ -0,0 +1,7 @@ +#!/usr/bin/env python + +from nose.core import TestProgram +import sys +import hy + +sys.exit(TestProgram()) diff --git a/setup.py b/setup.py index c312fe0..73be4d8 100755 --- a/setup.py +++ b/setup.py @@ -30,6 +30,9 @@ long_description = open('README.md', 'r').read() setup( name=__appname__, version=__version__, + scripts=[ + 'bin/hytest' + ], packages=[ 'hy', 'hy.lex',