/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.9
Tools/test2to3/setup.py
26 строк
753 B
Georg Brandl
More cleanup: Move some demos into a dedicated Tools/demo dir, move 2to3 demo to Tools, and remove all the other Demo content.
31 дек 2010, 00:33
31 дек 2010, 00:33
7fafbc9
Код
Авторство
О чём код?
# -*- 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, } )