summaryrefslogtreecommitdiffstats
path: root/Demo/distutils/test2to3/setup.py
blob: 3abb5ff1aa0439f049cbb4ba7a3eb66a10a86148 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: iso-8859-1 -*-
from distutils.core import setup

try:
    from distutils.command.build_py import build_py_2to3 as build_py
except ImportError:
    from distutils.command.build_py import build_py

setup(
    name = "test2to3",
    version = "1.0",
    description = "2to3 distutils test package",
    author = "Martin v. Löwis",
    author_email = "python-dev@python.org",
    license = "PSF license",
    packages = ["test2to3"],
    cmdclass = {'build_py':build_py}
)