# HG changeset patch # User Kevin Bullock # Date 1289363987 21600 # Node ID a8a16830ff001cdff8c33675ce7ca20eab52bd5a # Parent 92ba778ede62f91b241bac6eadb56ba933022f15 provide setup script diff -r 92ba778ede62 -r a8a16830ff00 .hgignore --- a/.hgignore Sun Oct 03 19:04:03 2010 -0400 +++ b/.hgignore Tue Nov 09 22:39:47 2010 -0600 @@ -3,3 +3,6 @@ .DS_Store *.un~ tags +build +dist +t.egg-info diff -r 92ba778ede62 -r a8a16830ff00 setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Nov 09 22:39:47 2010 -0600 @@ -0,0 +1,18 @@ +try: + from setuptools import setup +except: + from distutils.core import setup + +setup( + name='t', + version='1.2.0', + author='Steve Losh', + author_email='steve@stevelosh.com', + url='http://bitbucket.org/sjl/t', + py_modules=['t'], + entry_points={ + 'console_scripts': [ + 't = t:_main', + ], + }, +)