##// END OF EJS Templates
merge flags&aliases help output into just 'options'
merge flags&aliases help output into just 'options'

File last commit:

r4107:3291f211
r4195:cb24d551
Show More
setupbase.py
386 lines | 14.0 KiB | text/x-python | PythonLexer
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 # encoding: utf-8
Brian E Granger
Adding documentation to setup* files.
r1239 """
This module defines the things that are used in setup.py for building IPython
This includes:
* The basic arguments to setup
* Functions for finding things like packages, package data, etc.
* A function for checking dependencies.
"""
Fernando Perez
Add utility to record commit information in archives/tarballs....
r3198 from __future__ import print_function
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
#-------------------------------------------------------------------------------
# Copyright (C) 2008 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#-------------------------------------------------------------------------------
#-------------------------------------------------------------------------------
# Imports
#-------------------------------------------------------------------------------
Fernando Perez
Add utility to record commit information in archives/tarballs....
r3198 import os
import sys
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
Fernando Perez
Add utility to record commit information in archives/tarballs....
r3198 from ConfigParser import ConfigParser
from distutils.command.build_py import build_py
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 from glob import glob
from setupext import install_data_ext
#-------------------------------------------------------------------------------
# Useful globals and utility functions
#-------------------------------------------------------------------------------
# A few handy globals
isfile = os.path.isfile
pjoin = os.path.join
def oscmd(s):
Fernando Perez
Add utility to record commit information in archives/tarballs....
r3198 print(">", s)
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 os.system(s)
# A little utility we'll need below, since glob() does NOT allow you to do
# exclusion on multiple endings!
def file_doesnt_endwith(test,endings):
"""Return true if test is a file and its name does NOT end with any
of the strings listed in endings."""
if not isfile(test):
return False
for e in endings:
if test.endswith(e):
return False
return True
#---------------------------------------------------------------------------
# Basic project information
#---------------------------------------------------------------------------
Brian Granger
Merging -r 1192 from lp:ipython.
r2146 # release.py contains version, authors, license, url, keywords, etc.
Brian Granger
Fixing installation related issues.
r2058 execfile(pjoin('IPython','core','release.py'))
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
# Create a dict with the basic information
# This dict is eventually passed to setup after additional keys are added.
setup_args = dict(
name = name,
version = version,
description = description,
long_description = long_description,
author = author,
author_email = author_email,
url = url,
download_url = download_url,
license = license,
platforms = platforms,
keywords = keywords,
cmdclass = {'install_data': install_data_ext},
)
#---------------------------------------------------------------------------
# Find packages
#---------------------------------------------------------------------------
Fernando Perez
Fixes to build/setup machinery....
r1525 def add_package(packages,pname,config=False,tests=False,scripts=False,
others=None):
Brian E Granger
Adding documentation to setup* files.
r1239 """
Add a package to the list of packages, including certain subpackages.
"""
Brian E Granger
More work fixing some small bugs in the setup.py infrastructure. It is almost working!
r1240 packages.append('.'.join(['IPython',pname]))
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 if config:
Brian E Granger
More work fixing some small bugs in the setup.py infrastructure. It is almost working!
r1240 packages.append('.'.join(['IPython',pname,'config']))
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 if tests:
Brian E Granger
More work fixing some small bugs in the setup.py infrastructure. It is almost working!
r1240 packages.append('.'.join(['IPython',pname,'tests']))
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 if scripts:
Brian E Granger
More work fixing some small bugs in the setup.py infrastructure. It is almost working!
r1240 packages.append('.'.join(['IPython',pname,'scripts']))
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 if others is not None:
for o in others:
Brian E Granger
More work fixing some small bugs in the setup.py infrastructure. It is almost working!
r1240 packages.append('.'.join(['IPython',pname,o]))
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
def find_packages():
Brian E Granger
Adding documentation to setup* files.
r1239 """
Find all of IPython's packages.
"""
Brian E Granger
More work fixing some small bugs in the setup.py infrastructure. It is almost working!
r1240 packages = ['IPython']
Thomas Kluyver
Don't try to install IPython.config.default (no longer there).
r4027 add_package(packages, 'config', tests=True, others=['profile'])
Brian Granger
Fixing installation related issues.
r2058 add_package(packages, 'core', tests=True)
add_package(packages, 'deathrow', tests=True)
epatters
Updated setupbase.py to reflect new 'frontend.qt' and 'zmq' packages.
r2644 add_package(packages, 'extensions')
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 add_package(packages, 'external')
Thomas Spura
Unbundle of all external modules....
r3408 add_package(packages, 'external.argparse')
add_package(packages, 'external.decorator')
add_package(packages, 'external.decorators')
add_package(packages, 'external.guid')
add_package(packages, 'external.Itpl')
add_package(packages, 'external.mglob')
add_package(packages, 'external.path')
Nick Tarleton
Add missing external.pexpect to packages
r3484 add_package(packages, 'external.pexpect')
Thomas Spura
Unbundle of all external modules....
r3408 add_package(packages, 'external.pyparsing')
add_package(packages, 'external.simplegeneric')
MinRK
add missing external.ssh to setupbase.py
r3669 add_package(packages, 'external.ssh')
MinRK
remove IPython.kernel scripts and put migration notice in docs....
r3520 add_package(packages, 'kernel')
Fernando Perez
Finish cleanup of setup.py and tests after dead code removal....
r2662 add_package(packages, 'frontend')
epatters
Updated setupbase.py to reflect new 'frontend.qt' and 'zmq' packages.
r2644 add_package(packages, 'frontend.qt')
Fernando Perez
Rename entry point for Qt console to ipython-qtconsole....
r3069 add_package(packages, 'frontend.qt.console', tests=True)
add_package(packages, 'frontend.terminal', tests=True)
Brian Granger
Fixing installation related issues.
r2058 add_package(packages, 'lib', tests=True)
MinRK
organize IPython.parallel into subpackages
r3673 add_package(packages, 'parallel', tests=True, scripts=True,
others=['apps','engine','client','controller'])
Brian Granger
Fixing installation related issues.
r2058 add_package(packages, 'quarantine', tests=True)
add_package(packages, 'scripts')
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 add_package(packages, 'testing', tests=True)
Fernando Perez
Include testing plugin for installation.
r1580 add_package(packages, 'testing.plugin', tests=False)
Brian Granger
Fixing installation related issues.
r2058 add_package(packages, 'utils', tests=True)
epatters
Updated setupbase.py to reflect new 'frontend.qt' and 'zmq' packages.
r2644 add_package(packages, 'zmq')
epatters
Updated setupbase.py to include zmq.pylab package.
r2902 add_package(packages, 'zmq.pylab')
Jens Hedegaard Nielsen
install zmq.qui fixes problems with using ipython --pylab gtk
r3811 add_package(packages, 'zmq.gui')
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 return packages
#---------------------------------------------------------------------------
# Find package data
#---------------------------------------------------------------------------
def find_package_data():
Brian E Granger
Adding documentation to setup* files.
r1239 """
Find IPython's package_data.
"""
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 # This is not enough for these things to appear in an sdist.
# We need to muck with the MANIFEST to get this to work
Brian E Granger
package_data was missing the .txt files in the testing directories. This was causing ...
r1317 package_data = {
MinRK
reorganize default config files to match profiles as directories...
r3954 'IPython.config.profile' : ['README', '*/*.py'],
'IPython.testing' : ['*.txt'],
Brian E Granger
package_data was missing the .txt files in the testing directories. This was causing ...
r1317 }
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 return package_data
#---------------------------------------------------------------------------
# Find data files
#---------------------------------------------------------------------------
Fernando Perez
Fixes to build/setup machinery....
r1525 def make_dir_struct(tag,base,out_base):
"""Make the directory structure of all files below a starting dir.
This is just a convenience routine to help build a nested directory
hierarchy because distutils is too stupid to do this by itself.
XXX - this needs a proper docstring!
"""
# we'll use these a lot below
lbase = len(base)
pathsep = os.path.sep
lpathsep = len(pathsep)
out = []
for (dirpath,dirnames,filenames) in os.walk(base):
# we need to strip out the dirpath from the base to map it to the
# output (installation) path. This requires possibly stripping the
# path separator, because otherwise pjoin will not work correctly
# (pjoin('foo/','/bar') returns '/bar').
dp_eff = dirpath[lbase:]
if dp_eff.startswith(pathsep):
dp_eff = dp_eff[lpathsep:]
# The output path must be anchored at the out_base marker
out_path = pjoin(out_base,dp_eff)
# Now we can generate the final filenames. Since os.walk only produces
# filenames, we must join back with the dirpath to get full valid file
# paths:
pfiles = [pjoin(dirpath,f) for f in filenames]
Fernando Perez
Fix bug in our specification of data_files....
r3205 # Finally, generate the entry we need, which is a pari of (output
Fernando Perez
Fixes to build/setup machinery....
r1525 # path, files) for use as a data_files parameter in install_data.
Fernando Perez
Fix bug in our specification of data_files....
r3205 out.append((out_path, pfiles))
Fernando Perez
Fixes to build/setup machinery....
r1525
return out
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 def find_data_files():
Brian E Granger
Adding documentation to setup* files.
r1239 """
Find IPython's data_files.
Fernando Perez
Fixes to build/setup machinery....
r1525
Most of these are docs.
Brian E Granger
Adding documentation to setup* files.
r1239 """
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
Brian Granger
Fixing installation related issues.
r2058 docdirbase = pjoin('share', 'doc', 'ipython')
manpagebase = pjoin('share', 'man', 'man1')
Fernando Perez
Fixes to build/setup machinery....
r1525 # Simple file lists can be made by hand
Brian Granger
Fixing installation related issues.
r2058 manpages = filter(isfile, glob(pjoin('docs','man','*.1.gz')))
Fernando Perez
Fix bug in our specification of data_files....
r3205 igridhelpfiles = filter(isfile,
glob(pjoin('IPython','extensions','igrid_help.*')))
Fernando Perez
Fixes to build/setup machinery....
r1525
# For nested structures, use the utility above
Brian Granger
Fixing installation related issues.
r2058 example_files = make_dir_struct(
'data',
pjoin('docs','examples'),
pjoin(docdirbase,'examples')
)
manual_files = make_dir_struct(
'data',
pjoin('docs','dist'),
pjoin(docdirbase,'manual')
)
Fernando Perez
Fixes to build/setup machinery....
r1525
# And assemble the entire output list
Fernando Perez
Fix bug in our specification of data_files....
r3205 data_files = [ (manpagebase, manpages),
(pjoin(docdirbase, 'extensions'), igridhelpfiles),
Fernando Perez
Fixes to build/setup machinery....
r1525 ] + manual_files + example_files
Brian Granger
Lots of work on the display system, focused on pylab stuff....
r3280
Fernando Perez
Fixes to build system.
r1522 return data_files
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
Fernando Perez
Update setup and support tools to include new man pages.
r2100
def make_man_update_target(manpage):
"""Return a target_update-compliant tuple for the given manpage.
Parameters
----------
manpage : string
Name of the manpage, must include the section number (trailing number).
Example
-------
>>> make_man_update_target('ipython.1') #doctest: +NORMALIZE_WHITESPACE
('docs/man/ipython.1.gz',
['docs/man/ipython.1'],
'cd docs/man && gzip -9c ipython.1 > ipython.1.gz')
"""
man_dir = pjoin('docs', 'man')
manpage_gz = manpage + '.gz'
manpath = pjoin(man_dir, manpage)
manpath_gz = pjoin(man_dir, manpage_gz)
gz_cmd = ( "cd %(man_dir)s && gzip -9c %(manpage)s > %(manpage_gz)s" %
locals() )
return (manpath_gz, [manpath], gz_cmd)
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 #---------------------------------------------------------------------------
# Find scripts
#---------------------------------------------------------------------------
MinRK
prevent duplicate script installs in setuptools...
r3681 def find_scripts(entry_points=False):
"""Find IPython's scripts.
if entry_points is True:
return setuptools entry_point-style definitions
else:
return file paths of plain scripts [default]
Brian E Granger
Adding documentation to setup* files.
r1239 """
MinRK
prevent duplicate script installs in setuptools...
r3681 if entry_points:
epatters
Clean up entry point definition is setup.py.
r3839 console_scripts = [
MinRK
prevent duplicate script installs in setuptools...
r3681 'ipython = IPython.frontend.terminal.ipapp:launch_new_instance',
'pycolor = IPython.utils.PyColorize:main',
'ipcontroller = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
'ipengine = IPython.parallel.apps.ipengineapp:launch_new_instance',
'iplogger = IPython.parallel.apps.iploggerapp:launch_new_instance',
'ipcluster = IPython.parallel.apps.ipclusterapp:launch_new_instance',
'iptest = IPython.testing.iptest:main',
'irunner = IPython.lib.irunner:main'
]
epatters
Clean up entry point definition is setup.py.
r3839 gui_scripts = [
MinRK
rename ipythonqt to qtconsoleapp...
r4022 'ipython-qtconsole = IPython.frontend.qt.console.qtconsoleapp:main',
epatters
Clean up entry point definition is setup.py.
r3839 ]
scripts = dict(console_scripts=console_scripts, gui_scripts=gui_scripts)
MinRK
prevent duplicate script installs in setuptools...
r3681 else:
parallel_scripts = pjoin('IPython','parallel','scripts')
main_scripts = pjoin('IPython','scripts')
scripts = [
pjoin(parallel_scripts, 'ipengine'),
pjoin(parallel_scripts, 'ipcontroller'),
pjoin(parallel_scripts, 'ipcluster'),
pjoin(parallel_scripts, 'iplogger'),
pjoin(main_scripts, 'ipython'),
pjoin(main_scripts, 'pycolor'),
pjoin(main_scripts, 'irunner'),
pjoin(main_scripts, 'iptest')
Evan Patterson
Make ipython-qtconsole a GUI script in setuptools.
r3838 ]
return scripts
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 #---------------------------------------------------------------------------
Fernando Perez
Fixes to build/setup machinery....
r1525 # Verify all dependencies
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 #---------------------------------------------------------------------------
def check_for_dependencies():
Brian E Granger
Adding documentation to setup* files.
r1239 """Check for IPython's dependencies.
This function should NOT be called if running under setuptools!
"""
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 from setupext.setupext import (
Fernando Perez
Add utility to record commit information in archives/tarballs....
r3198 print_line, print_raw, print_status,
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 check_for_sphinx, check_for_pygments,
MinRK
add scripts for non-setuptools install of zmq.parallel
r3634 check_for_nose, check_for_pexpect,
MinRK
make readline a dependency on OSX and pyreadline on Windows...
r3699 check_for_pyzmq, check_for_readline
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 )
print_line()
print_raw("BUILDING IPYTHON")
print_status('python', sys.version)
print_status('platform', sys.platform)
if sys.platform == 'win32':
print_status('Windows version', sys.getwindowsversion())
print_raw("")
print_raw("OPTIONAL DEPENDENCIES")
check_for_sphinx()
check_for_pygments()
check_for_nose()
gvaroquaux
Add the subpackage to the setupbase.py
r1486 check_for_pexpect()
MinRK
add scripts for non-setuptools install of zmq.parallel
r3634 check_for_pyzmq()
MinRK
make readline a dependency on OSX and pyreadline on Windows...
r3699 check_for_readline()
Fernando Perez
Add utility to record commit information in archives/tarballs....
r3198
def record_commit_info(pkg_dir, build_cmd=build_py):
""" Return extended build command class for recording commit
The extended command tries to run git to find the current commit, getting
the empty string if it fails. It then writes the commit hash into a file
in the `pkg_dir` path, named ``.git_commit_info.ini``.
In due course this information can be used by the package after it is
installed, to tell you what commit it was installed from if known.
To make use of this system, you need a package with a .git_commit_info.ini
file - e.g. ``myproject/.git_commit_info.ini`` - that might well look like
this::
# This is an ini file that may contain information about the code state
[commit hash]
# The line below may contain a valid hash if it has been substituted
# during 'git archive'
archive_subst_hash=$Format:%h$
# This line may be modified by the install process
install_hash=
The .git_commit_info file above is also designed to be used with git
substitution - so you probably also want a ``.gitattributes`` file in the
root directory of your working tree that contains something like this::
myproject/.git_commit_info.ini export-subst
That will cause the ``.git_commit_info.ini`` file to get filled in by ``git
archive`` - useful in case someone makes such an archive - for example with
via the github 'download source' button.
Although all the above will work as is, you might consider having something
like a ``get_info()`` function in your package to display the commit
information at the terminal. See the ``pkg_info.py`` module in the nipy
package for an example.
"""
class MyBuildPy(build_cmd):
''' Subclass to write commit data into installation tree '''
def run(self):
build_py.run(self)
import subprocess
proc = subprocess.Popen('git rev-parse --short HEAD',
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
shell=True)
repo_commit, _ = proc.communicate()
# We write the installation commit even if it's empty
cfg_parser = ConfigParser()
cfg_parser.read(pjoin(pkg_dir, '.git_commit_info.ini'))
cfg_parser.set('commit hash', 'install_hash', repo_commit)
out_pth = pjoin(self.build_lib, pkg_dir, '.git_commit_info.ini')
out_file = open(out_pth, 'wt')
cfg_parser.write(out_file)
out_file.close()
return MyBuildPy