# HG changeset patch # User Steve Losh # Date 1304990535 14400 # Node ID 2f7fcbc59b021cbcea2205977d5091a32e757796 # Parent a8a16830ff001cdff8c33675ce7ca20eab52bd5a# Parent 985ec6033d0de54dd0dfcf22836a538bf82181bb Merge. diff -r 985ec6033d0d -r 2f7fcbc59b02 .hgignore --- a/.hgignore Mon May 09 18:16:32 2011 -0400 +++ b/.hgignore Mon May 09 21:22:15 2011 -0400 @@ -3,3 +3,6 @@ .DS_Store *.un~ tags +build +dist +t.egg-info diff -r 985ec6033d0d -r 2f7fcbc59b02 setup.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Mon May 09 21:22:15 2011 -0400 @@ -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', + ], + }, +)