better-exceptions/setup.py

20 lines
649 B
Python
Raw Normal View History

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