##// END OF EJS Templates
Make set_term_title() default to no-op, as it can cause problems....
Make set_term_title() default to no-op, as it can cause problems. In embedded contexts this can corrupt stdout (e.g. gedit ipython plugin), by default ipython should be 'safe' to use in all contexts. The user-facing terminal app can activate more aggressive configurations as needed. Added an API call to actually toggle the state, and deprecated the old one (which could only disable but not enable).

File last commit:

r1617:49915b40
r1852:37edbe78
Show More
setupbase.py
279 lines | 9.4 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.
"""
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 __docformat__ = "restructuredtext en"
#-------------------------------------------------------------------------------
# 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
#-------------------------------------------------------------------------------
import os, sys
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):
print ">", s
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
#---------------------------------------------------------------------------
# Release.py contains version, authors, license, url, keywords, etc.
execfile(pjoin('IPython','Release.py'))
# 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']
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 add_package(packages, 'config', tests=True)
add_package(packages , 'Extensions')
add_package(packages, 'external')
add_package(packages, 'gui')
add_package(packages, 'gui.wx')
gvaroquaux
Add ipythonx to scripts.
r1488 add_package(packages, 'frontend', tests=True)
gvaroquaux
Add the subpackage to the setupbase.py
r1486 add_package(packages, 'frontend._process')
add_package(packages, 'frontend.wx')
gvaroquaux
Add ipythonx to scripts.
r1488 add_package(packages, 'frontend.cocoa', tests=True)
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 add_package(packages, 'kernel', config=True, tests=True, scripts=True)
add_package(packages, 'kernel.core', config=True, tests=True)
add_package(packages, 'testing', tests=True)
Brian Granger
Added tests for the new get_ipython_dir and get_security_dir ...
r1617 add_package(packages, 'tests')
Fernando Perez
Include testing plugin for installation.
r1580 add_package(packages, 'testing.plugin', tests=False)
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 add_package(packages, 'tools', tests=True)
add_package(packages, 'UserConfig')
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 = {
'IPython.UserConfig' : ['*'],
'IPython.tools.tests' : ['*.txt'],
'IPython.testing' : ['*.txt']
}
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]
# Finally, generate the entry we need, which is a triple of (tag,output
# path, files) for use as a data_files parameter in install_data.
out.append((tag,out_path,pfiles))
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
docdirbase = 'share/doc/ipython'
manpagebase = 'share/man/man1'
Fernando Perez
Fixes to build/setup machinery....
r1525 # Simple file lists can be made by hand
manpages = filter(isfile, glob('docs/man/*.1.gz'))
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237 igridhelpfiles = filter(isfile, glob('IPython/Extensions/igrid_help.*'))
Fernando Perez
Fixes to build/setup machinery....
r1525
# For nested structures, use the utility above
example_files = make_dir_struct('data','docs/examples',
pjoin(docdirbase,'examples'))
manual_files = make_dir_struct('data','docs/dist',pjoin(docdirbase,'manual'))
# And assemble the entire output list
data_files = [ ('data',manpagebase, manpages),
('data',pjoin(docdirbase,'extensions'),igridhelpfiles),
] + manual_files + example_files
Fernando Perez
Fixes to build system.
r1522 ## import pprint # dbg
## print '*'*80
## print 'data files'
## pprint.pprint(data_files)
## print '*'*80
return data_files
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
#---------------------------------------------------------------------------
# Find scripts
#---------------------------------------------------------------------------
def find_scripts():
Brian E Granger
Adding documentation to setup* files.
r1239 """
Find IPython's scripts.
"""
Fernando Perez
Fixes to build/setup machinery....
r1525 scripts = ['IPython/kernel/scripts/ipengine',
'IPython/kernel/scripts/ipcontroller',
Fernando Perez
Checkpoint before merging with upstream
r1568 'IPython/kernel/scripts/ipcluster',
Fernando Perez
Fixes to build/setup machinery....
r1525 'scripts/ipython',
'scripts/ipythonx',
Fernando Perez
More updates for release of 0.9.rc1....
r1599 'scripts/ipython-wx',
Fernando Perez
Fixes to build/setup machinery....
r1525 'scripts/pycolor',
'scripts/irunner',
Fernando Perez
Checkpoint before merging with upstream
r1568 'scripts/iptest',
Fernando Perez
Fixes to build/setup machinery....
r1525 ]
Brian E Granger
Initial work towards refactoring the setup.py scripts to accept the new ipython1 packages...
r1237
# Script to be run by the windows binary installer after the default setup
# routine, to add shortcuts and similar windows-only things. Windows
# post-install scripts MUST reside in the scripts/ dir, otherwise distutils
# doesn't find them.
if 'bdist_wininst' in sys.argv:
if len(sys.argv) > 2 and ('sdist' in sys.argv or 'bdist_rpm' in sys.argv):
print >> sys.stderr,"ERROR: bdist_wininst must be run alone. Exiting."
sys.exit(1)
scripts.append('scripts/ipython_win_post_install.py')
return scripts
#---------------------------------------------------------------------------
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 (
print_line, print_raw, print_status, print_message,
check_for_zopeinterface, check_for_twisted,
check_for_foolscap, check_for_pyopenssl,
check_for_sphinx, check_for_pygments,
check_for_nose, check_for_pexpect
)
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_zopeinterface()
check_for_twisted()
check_for_foolscap()
check_for_pyopenssl()
check_for_sphinx()
check_for_pygments()
check_for_nose()
gvaroquaux
Add the subpackage to the setupbase.py
r1486 check_for_pexpect()