~ubuntu-branches/ubuntu/raring/ipython/raring

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2013-02-02 11:14:27 UTC
  • mfrom: (1.2.21) (6.2.3 experimental)
  • Revision ID: package-import@ubuntu.com-20130202111427-nxxl7g1ulix8g9lg
Tags: 0.13.2~rc2-1
* New upstream release candidate (LP: #1161818, #1162112)
* pass -a to xvfb-run
* drop DM-Upload-Allowed, not needed anymore
* don't link documentation of ipython-doc so ipython3 does not depend on
  ipython (Closes: #695554)
  Requires ipython-doc.preinst to not lose copyright on upgrade
* add ipython3 and ipython3-qtconsole desktop files (Closes: #693612)
* fix detection of cython modules for multiarch python (Closes: #697704)
* don't install tests for notebook and qtconsole
* bump standard to 3.9.4, no changes required
* add autopkgtests running testsuite and testing tools, cython magics
  and incomplete install message
* fix crash on tracebacks without line numbers (Closes: #701597)
* add tkinter package to debianize-error-messages.patch (Closes: #701707)
* use canonical vcs fields in control

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
# Handle OS specific things
94
94
#-------------------------------------------------------------------------------
95
95
 
96
 
if os.name == 'posix':
97
 
    os_name = 'posix'
98
 
elif os.name in ['nt','dos']:
 
96
if os.name in ('nt','dos'):
99
97
    os_name = 'windows'
100
98
else:
101
 
    print('Unsupported operating system:',os.name)
102
 
    sys.exit(1)
 
99
    os_name = os.name
103
100
 
104
101
# Under Windows, 'sdist' has not been supported.  Now that the docs build with
105
102
# Sphinx it might work, but let's not turn it on until someone confirms that it
230
227
    setuptools_extra_args['entry_points'] = find_scripts(True)
231
228
    setup_args['extras_require'] = dict(
232
229
        parallel = 'pyzmq>=2.1.4',
233
 
        qtconsole = 'pygments',
 
230
        qtconsole = ['pyzmq>=2.1.4', 'pygments'],
234
231
        zmq = 'pyzmq>=2.1.4',
235
232
        doc = 'Sphinx>=0.3',
236
233
        test = 'nose>=0.10.1',
237
 
        notebook = 'tornado>=2.0'
 
234
        notebook = ['tornado>=2.0', 'pyzmq>=2.1.11'],
238
235
    )
239
236
    requires = setup_args.setdefault('install_requires', [])
240
237
    setupext.display_status = False