setup.py @ 6af374f52295

Fix taskline parsing to allow pipes(|) in task
author zack <zack@heavybook.home>
date Thu, 08 Sep 2011 22:46:50 -0400
parents a8a16830ff00
children a372e4e37c2c
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',
        ],
    },
)