##// END OF EJS Templates
Fixes for UltraTB and PyColorize with Python 3
Fixes for UltraTB and PyColorize with Python 3

File last commit:

r4750:b9f6e707
r4758:f866f01c
Show More
setup3.py
9 lines | 241 B | text/x-python | PythonLexer
import os.path
from setuptools import setup
from setupbase import (setup_args, find_scripts, find_packages)
setup_args['entry_points'] = find_scripts(True)
setup_args['packages'] = find_packages()
setup(use_2to3 = True, **setup_args)