--- 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
--- /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',
+ ],
+ },
+)