setup.py @ b183c1d51530

Fixes #7: Count on bash prompt does not work properly.
author Alexar <github@alexar.me>
date Mon, 01 Jan 2018 10:37:56 +1100
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',
        ],
    },
)