1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
|
################################################################################
# Name: metasetup.py
# Purpose: A scriptlet to simplify writing `setup.py' scripts
# Author: Ken McIvor <mcivor@iit.edu>
#
#
# Metasetup does several things that make writing setup scripts easier:
# 1. Automagically translates uppercased global variables into their
# corresponding keyword arguments
# 2. Manages keyword argument compatability for you (e.g. keyword arguments
# for distutils extensions like py2exe are omitted when using distutils)
# 3. Adds support for "package_data" when using distutils with Python < 2.4
#
#
# Automatic Translation
# Any global variable that is the uppercased version of a keyword argument
# will be used as that keyword arguments value.
#
# In other words,
#
# AUTHOR = 'Ken McIvor'
# AUTHOR_EMAIL = 'mcivor@iit.edu'
#
# will be turned into
#
# setup(..., author='Ken McIvor', author_email='mcivor@iit.edu', ...)
#
#
# Keyword Compatability
# Metasetup omits keyword arguments that are incompatible with your current
# build environment:
# * Python < 2.2.3: classifiers, download_url
#
# Arguments for setuptools, py2app, and py2exe are omitted unless you
# imported them before running metasetup:
# * setuptools: zip_safe, install_requires, entry_points, extras_require,
# setup_requires, namespace_packages, test_suite,
# eager_resources
# * py2app: app
# * py2exe: console, windows, service, com_server, zipfile
#
#
# Using distutils Extensions
# Metasetup can automatically load distutils extensions without requiring you
# to edit `setup.py'. Extensions are loaded based on the environment
# variables USE_SETUPTOOLS, USE_PY2EXE, and USE_PY2APP. To use an extension,
# set the corresponding environment variable USE_XYZ to "1", "y", or "yes".
#
#
# Using metasetup
# Use execfile() to run metasetup at the end of `setup.py':
# # Example setup.py that uses metasetup
# NAME = 'example'
# VERSION = '1.0'
# PY_MODULES = ['example.py']
# execfile('metasetup.py')
#
################################################################################
#
# LICENSING AND COPYRIGHT
#
# The class `_package_data_build_py' is derived from Python 2.4's distutils
# package. This portion of the software is licensed under the terms of the PSF
# License Agreement for Python 2.4.
#
#
# Copyright 2005-2006 Illinois Institute of Technology
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL ILLINOIS INSTITUTE OF TECHNOLOGY BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Except as contained in this notice, the name of Illinois Institute
# of Technology shall not be used in advertising or otherwise to promote
# the sale, use or other dealings in this Software without prior written
# authorization from Illinois Institute of Technology.
#
################################################################################
#
# ChangeLog
#
# 08-24-2006 Ken McIvor <mcivor@iit.edu>
# * Release: 1.1
# * Setuptools is no longer used by default, as it is no longer a drop-in
# replacement for distuils (it now attempts to check whether installation
# directories appear in `sys.path').
# * Distutils extensions can now be loaded via environment variables.
# * A bug in the handling of the Python 2.2.3 metadata has been fixed.
#
# 11-11-2005 Ken McIvor <mcivor@iit.edu>
# * Release: 1.0
################################################################################
import sys
import glob
import os
import os.path
import distutils.command.build_py
import distutils.dist
import distutils.log
import distutils.util
__metasetup_version__ = '1.1'
#
# Functions and classes to setup the build environment appropriately
#
def _use_distutils_extension(modname):
"""
Checks to see if `setup.py' imported the distutils extension "modname". If
not, and the USE_MODNAME environment variable is set, the extension will be
automatically imported.
"""
if sys.modules.has_key(modname):
return True
try:
var = os.getenv('USE_'+modname.upper(), '0').lower()
except:
return False
if var in ('1', 'y', 'yes'):
try:
__import__(modname)
except ImportError, e:
sys.stderr.write(
'%s: could not import the "%s" distutils extension\n'
% (os.path.basename(sys.argv[0]), modname))
sys.exit(1)
else:
return True
else:
return False
def _use_setuptools():
"""
Checks if `setup.py' imported setuptools and loads it automatically if
the USE_SETUPTOOLS environment variable is set.
"""
return _use_distutils_extension('setuptools')
def _use_py2app():
"""
Checks if `setup.py' imported py2app and loads it automatically if the
USE_PY2APP environment variable is set.
"""
return _use_distutils_extension('py2app')
def _use_py2exe():
"""
Checks if `setup.py' imported py2exe and loads it automatically if the
USE_PY2EXE environment variable is set.
"""
return _use_distutils_extension('py2exe')
def _get_setup_function():
"""
Retrieve the appropriate setup() function. Setuptools is favored over
distutils if it is installed.
"""
if _use_setuptools():
from setuptools import setup
else:
from distutils.core import setup
return setup
class _package_data_build_py(distutils.command.build_py.build_py):
"""
Adds support for package data files to distutils for Python < 2.4.
The contents of this class are derived from Python 2.4's build_py class,
located in the distutils.command.build_py module (revision $Id:
install_lib.py,v 1.45 2004/12/02 20:14:16 lemburg Exp $). Subsequently,
this portion of the software is licensed under the terms of the PSF
License Agreement for Python 2.4.
NOTE: When using metasetup.py to invoke setup(), this command class must be
installed by _install_package_data_support(), rather than using the
CMDCLASS variable.
"""
def initialize_options (self):
distutils.command.build_py.build_py.initialize_options(self)
self.package_data = None
def finalize_options (self):
distutils.command.build_py.build_py.finalize_options(self)
self.package_data = self.distribution.package_data
self.data_files = self.get_data_files()
def run(self):
if self.py_modules:
self.build_modules()
if self.packages:
self.build_packages()
self.build_package_data()
self.byte_compile(self.get_outputs(include_bytecode=0))
def get_data_files (self):
"""Generate list of '(package,src_dir,build_dir,filenames)' tuples"""
data = []
if not self.packages or self.package_data is None:
return data
for package in self.packages:
# Locate package source directory
src_dir = self.get_package_dir(package)
# Compute package build directory
build_dir = os.path.join(*([self.build_lib] + package.split('.')))
# Length of path to strip from found files
plen = len(src_dir)+1
# Strip directory from globbed filenames
filenames = [
file[plen:] for file in self.find_data_files(package, src_dir)
]
data.append((package, src_dir, build_dir, filenames))
return data
def find_data_files (self, package, src_dir):
"""Return filenames for package's data files in 'src_dir'"""
globs = (self.package_data.get('', [])
+ self.package_data.get(package, []))
files = []
for pattern in globs:
platform_path = distutils.util.convert_path(pattern)
# Each pattern has to be converted to a platform-specific path
filelist = glob.glob(os.path.join(src_dir, platform_path))
# Files that match more than one pattern are only added once
files.extend([fn for fn in filelist if fn not in files])
return files
def build_package_data (self):
"""Copy data files into build directory"""
for package, src_dir, build_dir, filenames in self.data_files:
for filename in filenames:
target = os.path.join(build_dir, filename)
self.mkpath(os.path.dirname(target))
self.copy_file(os.path.join(src_dir, filename), target,
preserve_mode=False)
def _install_package_data_support():
"""
Installs support for the package_data argument if necessary.
"""
global CMDCLASS
try:
CMDCLASS
except NameError:
CMDCLASS = None
# check for setuptools or Python >= 2.4
if _use_setuptools() or sys.version_info[0:2] >= (2,4):
return
# prevent distutils from complaining about the package_data keyword argument
distutils.dist.Distribution.package_data = None
# override the default build_py command
if CMDCLASS is None:
CMDCLASS = {}
if not CMDCLASS.has_key('build_py'):
CMDCLASS['build_py'] = _package_data_build_py
def _fixup_extensions_for_setuptools(extensions):
"""
This function replaces instances of the original distutils.Extension class
in the "extensions" list with instances of setuptools version.
Setuptools monkeypatches distutils.Extension to add support for extensions
written in Pyrex (.pyx), which leads to extreme badness in
distutils.build_ext if you call setup() with distutils.Extension instances.
"""
import setuptools
for i in range(0, len(extensions)):
ext = extensions[i]
if isinstance(ext, setuptools.Extension):
continue
else:
extensions[i] = setuptools.Extension(
name=ext.name,
sources=ext.sources,
include_dirs=ext.include_dirs,
define_macros=ext.define_macros,
undef_macros=ext.undef_macros,
library_dirs=ext.library_dirs,
libraries=ext.libraries,
runtime_library_dirs=ext.runtime_library_dirs,
extra_objects=ext.extra_objects,
extra_compile_args=ext.extra_compile_args,
extra_link_args=ext.extra_link_args,
export_symbols=ext.export_symbols,
depends=ext.depends,
language=ext.language)
#
# Create the lists of variables that correspond to keyword arguments of setup()
#
# package metadata
_distutils_base_metadata_variables = [
'NAME', 'VERSION', 'AUTHOR', 'AUTHOR_EMAIL', 'MAINTAINER',
'MAINTAINER_EMAIL', 'URL', 'LICENSE', 'DESCRIPTION', 'LONG_DESCRIPTION',
'KEYWORDS', 'PLATFORMS']
# package metadata added in Python 2.2.3
_distutils_py223_metadata_variables = ['CLASSIFIERS', 'DOWNLOAD_URL']
# packages, modules, and extensions
_distutils_python_variables = [
'PACKAGES', 'PACKAGE_DIR', 'PY_MODULES', 'EXT_MODULES']
# build options
_distutils_extension_variables = [
'LIBRARIES', 'HEADERS', 'INCLUDE_DIRS', 'EXTRA_PATH', 'OPTIONS']
# additional files to distribute
_distutils_resource_variables = ['SCRIPTS', 'PACKAGE_DATA', 'DATA_FILES']
# hooks to override the behavior of distutils
_distutils_command_variables = [
'CMDCLASS', 'DISTCLASS', 'SCRIPT_NAME', 'SCRIPT_ARGS']
# setuptools options
_setuptools_variables = [
'ZIP_SAFE', 'INSTALL_REQUIRES', 'ENTRY_POINTS', 'EXTRAS_REQUIRE',
'SETUP_REQUIRES', 'NAMESPACE_PACKAGES', 'TEST_SUITE', 'EAGER_RESOURCES']
# py2app options
_py2app_variables = ['APP']
# py2exe options
_py2exe_variables = ['CONSOLE', 'WINDOWS', 'SERVICE', 'COM_SERVER', 'ZIPFILE']
#
# Setup the build envrionment and invoke setup()
#
if __name__ == '__main__':
# Prevent people from running this script directly
if os.path.basename(sys.argv[0]).startswith('metasetup'):
sys.stderr.write('%s: please run `setup.py\' instead\n'
% os.path.basename(sys.argv[0]))
sys.exit(1)
# if necessary, install support for the 'package_data' keyword argument
_install_package_data_support()
# omit the new metadata keyword arguments for Python < 2.2.3
if sys.version < '2.2.3':
_distutils_metadata_variables = _distutils_base_metadata_variables
else:
_distutils_metadata_variables = (_distutils_base_metadata_variables
+ _distutils_py223_metadata_variables)
# start building the list of supported keyword arguments
_kwd_variables = (_distutils_metadata_variables
+ _distutils_python_variables + _distutils_extension_variables
+ _distutils_resource_variables + _distutils_command_variables)
# include the setuptools keyword arguments
if _use_setuptools():
_kwd_variables += _setuptools_variables
# include the py2app keyword arguments
if _use_py2app():
_kwd_variables += _py2app_variables
# include the py2exe keyword arguments
if _use_py2exe:
_kwd_variables += _py2exe_variables
# build the arguments dictionary
_kwd_arguments = {}
for _kwd_name in _kwd_variables:
_kwd_value = globals().get(_kwd_name)
if _kwd_value is not None:
_kwd_arguments[_kwd_name.lower()] = _kwd_value
# convert distutils.Extension instances to setuptools.Extension instances
if _use_setuptools() and _kwd_arguments.has_key('ext_modules'):
_fixup_extensions_for_setuptools(_kwd_arguments['ext_modules'])
# fetch and invoke setup()
_setup_function = _get_setup_function()
_setup_function(**_kwd_arguments)
|