setup.py @ 65b004631139

Allow comments in tasks files
author Shrikant-Sharat <shrikantsharat.k@gmail.com>
date Thu, 01 Sep 2011 22:29:33 +0530
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',
        ],
    },
)