a8a16830ff00
provide setup script
author | Kevin Bullock <kbullock@ringworld.org> |
---|---|
date | Tue, 09 Nov 2010 22:39:47 -0600 |
parents | 92ba778ede62 |
children | 2f7fcbc59b02 |
branches/tags | (none) |
files | .hgignore setup.py |
Changes
--- 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
--- /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', + ], + }, +)