mirror of
https://github.com/python/cpython.git
synced 2025-11-25 12:44:13 +00:00
More cleanup: Move some demos into a dedicated Tools/demo dir, move 2to3 demo to Tools, and remove all the other Demo content.
This commit is contained in:
parent
6f17e2df29
commit
7fafbc95c0
164 changed files with 25 additions and 12436 deletions
26
Tools/test2to3/setup.py
Normal file
26
Tools/test2to3/setup.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# -*- 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
|
||||
|
||||
try:
|
||||
from distutils.command.build_scripts import build_scripts_2to3 as build_scripts
|
||||
except ImportError:
|
||||
from distutils.command.build_scripts import build_scripts
|
||||
|
||||
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"],
|
||||
scripts = ["maintest.py"],
|
||||
cmdclass = {'build_py': build_py,
|
||||
'build_scripts': build_scripts,
|
||||
}
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue