2f7fcbc59b02

Merge.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Mon, 09 May 2011 21:22:15 -0400
parents a8a16830ff00 (diff) 985ec6033d0d (current diff)
children 804731e83b69 2d2bbd81ed58 6af374f52295 65b004631139
branches/tags (none)
files

Changes

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