##// END OF EJS Templates
Fix various problems highlighted by the test suite.
Fix various problems highlighted by the test suite.

File last commit:

r4750:b9f6e707
r4759:6feb7557
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)