##// END OF EJS Templates
Parse user code to AST using compiler flags....
Parse user code to AST using compiler flags. Closes gh-777.

File last commit:

r4765:9b62327a
r4795:e783b1cf
Show More
setup3.py
13 lines | 312 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, suffix='3')
setup_args['packages'] = find_packages()
def main():
setup(use_2to3 = True, **setup_args)
if __name__ == "__main__":
main()