20 lines
649 B
Python
Raw Normal View History

2017-03-12 04:22:31 -07:00
from distutils.core import setup
2017-03-22 10:28:41 -07:00
2017-05-12 00:12:44 -07:00
VERSION = '0.1.8'
2017-03-22 10:28:41 -07:00
2017-03-12 04:22:31 -07:00
setup(
name = 'better_exceptions',
packages = ['better_exceptions'],
2017-03-22 10:28:41 -07:00
version = VERSION,
2017-03-12 04:22:31 -07:00
description = 'Pretty and helpful exceptions, automatically',
author = 'Josh Junon',
author_email = 'josh@junon.me',
2017-03-12 04:25:47 -07:00
url = 'https://github.com/qix-/better-exceptions',
2017-03-22 10:28:41 -07:00
download_url = 'https://github.com/qix-/better-exceptions/archive/{}.tar.gz'.format(VERSION),
2017-03-12 04:22:31 -07:00
keywords = ['pretty', 'better', 'exceptions', 'exception', 'error', 'local', 'debug', 'debugging', 'locals'],
classifiers = [],
extras_require = {
':sys_platform=="win32"': ['colorama']
}
2017-03-12 04:22:31 -07:00
)