Min RK
8cc3ebe724
remove nbconvert from package data
11 years ago
Thomas Kluyver
3da1ec7d36
Shim IPython.nbformat so tests pass again
11 years ago
Min RK
62c0ab05b6
remove bundled profiles
...
and move README_STARTUP to core/profile
11 years ago
Thomas Kluyver
54195eaf34
Remove Qt console package_data from setup
...
We should remember this when the ipython_qtconsole package gets its own
setup.
Closes gh-8140
11 years ago
MinRK
f0f9cdf3ae
remove non-setuptools dependency checks
11 years ago
MinRK
3f93c80d7e
remove pexpect from external
...
make it a dependency on non-Windows
11 years ago
MinRK
e34f926e0e
remove appnope from external
...
make it a dependency on OS X
11 years ago
Thomas Kluyver
8c6b5ea4dd
Merge pull request #7632 from minrk/terminado-dep
...
add terminado as [notebook] dep on non-Windows
11 years ago
Min RK
f979c3c48a
add terminado to wheel dependencies
11 years ago
Min RK
01de88687d
verify that `setup.py jsversion` did something
11 years ago
Min RK
67124b4fcc
remove strict arg from css_js_prerelease
11 years ago
Min RK
cb0c95575e
friendlier error messages when invoke/lessc are missing
...
and not needed.
11 years ago
Thomas Kluyver
c1ebfd1f3a
Add kernel resources directory to package_data
12 years ago
Min RK
46f2ebf1de
Remove highlight.js
...
from components and setupbase
12 years ago
Thomas Kluyver
6b85afb077
Add es6-promise to package_data
12 years ago
Thomas Kluyver
b80be59fef
Update some docstrings
12 years ago
Thomas Kluyver
37a2a8a6e5
Install on Windows without using setuptools
...
This creates batch files, with a .cmd extension, which can launch
IPython from 'ipython' at a command line, to replace the .exe files
created by setuptools.
This makes repeated installations much quicker on Windows.
12 years ago
MinRK
fd17ea8078
Use Draft4 JSON Schema for v4
12 years ago
Kyle Kelley
1dcf9c325d
Add term.js to package data for installation.
12 years ago
Matthias Bussonnier
d269912958
Merge pull request #6110 from minrk/binarycomm
...
support binary buffers in comm messages
12 years ago
MinRK
41cfd4f5cf
use invoke instead of fabric
...
it's the descendant of the part of fabric we actually use,
it doesn't have complex compiled dependencies like fabric,
and it works on Python 3.
12 years ago
MinRK
ec769b6ef8
install text-encoding polyfill
12 years ago
MinRK
1a4b795870
Use Draft4 JSON Schema for both v3 and v4
...
no longer need jsonpointer
12 years ago
Matthias Bussonnier
be4b180b03
cast unicode to allow json dump
12 years ago
Matthias BUSSONNIER
8b20aee32e
use momentjs for nice dates
12 years ago
Thomas Spura
fadeeb0275
fontawesome-4 renamed font folder to fonts
12 years ago
MinRK
ff98a86f2d
check_call with list, instead of shell=True
12 years ago
MinRK
168d619726
`fab css` checks whether it needs to do anything
...
makefile-style
adds `force` arg to override, minify implies force.
12 years ago
MinRK
b1882ca9e5
add strict arg to css_js setup decorator
...
and attempt to build css on build_by (install)
12 years ago
MinRK
0eae787b58
don’t store minified css in development
...
- setup css defaults to non-minified css
- build minified css and jsversion on sdist/wheel
12 years ago
MinRK
11bcc6e1e5
merge separate input/expected notebooks for execute preprocessor
12 years ago
Julia Evans
06adb299c0
Oops, preprocessor*s*
12 years ago
Julia Evans
4fcf0df53a
Add preprocessor test inputs to find_package_data()
12 years ago
Thomas Kluyver
556257a66b
Fix bootstrap location in package_data
12 years ago
Thomas Kluyver
1e9413a293
Merge pull request #5658 from jhamrick/nbvalidate
...
Improve nbformat json validator
12 years ago
MinRK
b563aaf948
add ipython[terminal] dependency group
...
for pyreadline on Windows.
gnureadline is still a dependency on OS X
pyreadline will *not* be installed by default anymore.
There will no longer be any checks for dependencies in entry points.
12 years ago
Matthias BUSSONNIER
2d43dcdc7f
mark v3.withref.json as part of package
12 years ago
MinRK
5b75a7992d
remove inappropriate wheel tag override
...
I misunderstood how these tags are interpreted.
We do not want `py2` and `py3`, we want `py27` and `py33`,
which indicate >= matching in the minor version.
This means we should build wheels with the minimum supported Python.
12 years ago
cgohlke
8644bf3d84
Install jquery-ui theme images
12 years ago
cgohlke
248695cb8e
Install ui-bg_glass_75_e6e6e6_1x400.png
12 years ago
MinRK
710818c526
do not install less sources
...
only their css build results are used after install
12 years ago
MinRK
07b8b93e96
install bootstrap-tour css
12 years ago
Thomas Kluyver
80af3b4cfb
Merge pull request #4802 from ivanov/ui-docs
...
Tour of the notebook UI (was UI elements inline with highlighting)
12 years ago
MinRK
3588fe40a9
Merge Security Pull Request: google-caja
...
Adds HTML sanitization.
The basics:
- untrusted HTML is always sanitized, with no warning
(there is console logging for changes made)
- markdown is always treated as untrusted
- no warnings for simply excluded output (e.g. Javascript)
- CSS tags and attributes are always stripped from untrusted HTML
- never check whether HTML is "safe," only sanitize
- add 'Trust notebook' to File menu
12 years ago
Thomas Kluyver
9a87d9a0f2
Fix wheel dependency specification
12 years ago
MinRK
156207ab41
don't forget to install caja
12 years ago
Thomas Kluyver
78943c7258
Add mock to requirements for testing
12 years ago
MinRK
31804fa3cb
install bootstrap-tour component
12 years ago
MinRK
9417c4071d
only depend on readline package in CPython
...
shouldn't try to install it on PyPy
not sure about PyReadline on PyPy on Windows
12 years ago
MinRK
1491e4cec6
depend on new gnureadline instead of readline on OS X
...
this is the same package under a different name,
to avoid the stdlib-overriding behavior that relied on easy_install's unpleasantness.
12 years ago
Thomas Kluyver
53cbcfc3bb
Merge pull request #5047 from minrk/check-pkg-data
...
only validate package_data when it might be used
12 years ago
Jonathan Frederic
67a7cd1b33
Fixed setup base so it requires the correct files
12 years ago
MinRK
17d5c263a8
run check_package_data as part of build_py
...
rather than explicitly in setup.py
12 years ago
Jonathan Frederic
da7b329772
Glob fix so directories aren't accidently treated like files
12 years ago
MinRK
c79134f2d9
only validate package_data when it might be used
...
closes #5046
12 years ago
MinRK
a2511de20d
font-awesome moved
12 years ago
MinRK
07f757789f
validate package_data
...
and fix errors caught by the validation
12 years ago
MinRK
197dc25b97
fix missing-wheel command
...
because an empty distutils command must implement three no-op methods and one class attribute.
Which makes perfect sense.
12 years ago
MinRK
4c41c331d7
we only install man pages to usr/share
...
let the function reflect this, rather than having several entries with no files.
12 years ago
MinRK
143ab47bfa
whitelist installed components
...
we don't need most of what's in components to be installed.
Much of it is included just for sdists or development.
12 years ago
MinRK
d8ade7980d
platform-dependent requirements
...
in bdist_wheel
12 years ago
MinRK
29b1aa4c93
only put Python major version in wheel tags
...
results in 'py2-none-any' instead of 'py27-none-any'.
This is supported by pip and PEP 425, but not available from bdist_wheel by default.
12 years ago
MinRK
22c5e3ec2b
mention that pexpect ships in IPython.external
...
and only check for it on posix
12 years ago
MinRK
3050be2795
include marked.js in package_data
12 years ago
Thomas Kluyver
5a8d9182c4
Fix glob pattern for nbconvert template files
12 years ago
Thomas Kluyver
22f7bd4597
Walk nbconvert templates directory for package data files
12 years ago
Min RK
a80e387b0a
Merge pull request #4700 from minrk/ifmain
...
use if main block in entry points
13 years ago
Min RK
12acd244ca
Merge pull request #4692 from takluyver/setup-symlink-improvements
...
setup.py symlink improvements
13 years ago
Thomas Kluyver
74cb75e0c9
Add 'unsymlink command to remove the symlink
13 years ago
MinRK
efe3e67e39
move import into ifmain block
13 years ago
Thomas Kluyver
37edc78d76
If symlink already exists, clobber it with current one
13 years ago
Thomas Kluyver
24b7085554
Also check that existing symlink has desired target before allowing it.
13 years ago
MinRK
c491cfaab2
remove irunner and iplogger from installed scripts
13 years ago
MinRK
f42fc663d2
use if main block in entry points
...
closes #4698
13 years ago
Thomas Kluyver
c479ba9d18
Only ignore existing target for symlink if it is already a symlink
13 years ago
Thomas Kluyver
a391a1f755
Don't build Python modules unnecessarily before symlinking to site-packages
13 years ago
Thomas Kluyver
431e078992
Add sample wav file to package_data
13 years ago
MinRK
71d6a80629
add `setup.py jsversion`
...
for writing the IPython version to `IPython.version` in javascript.
supersedes #4357
13 years ago
Thomas Kluyver
655e870d02
Add comment to automatically generated scripts.
13 years ago
Thomas Kluyver
883c46b5b5
Rework setup to allow installing on Python 2 and 3.
...
Scripts named ipython and ipython[23], etc.
Neither distutils nor setuptools made this easy.
13 years ago
Thomas Kluyver
e8d357707a
Fix renaming scripts
13 years ago
Thomas Kluyver
432377439b
Fix renaming scripts with 3 suffix on Python 3
13 years ago
Min RK
d1de1d26f4
Merge pull request #4198 from jdfreder/versionconversion_nbconvert
...
add upgrade / downgrade to nbformat
13 years ago
Paul Ivanov
d46a7d6b75
include js tests in package_data
13 years ago
Thomas Kluyver
0cd7d8a5de
Remove pycolor script
13 years ago
Jonathan Frederic
171dd43def
Added test nbs to setup and removed todo
13 years ago
Brian E. Granger
c3510eb75f
Merge pull request #4207 from minrk/setup-css
...
add `setup.py css` command
13 years ago
Thomas Kluyver
04b5a4b0ac
Fix iptest setuptools entry point
13 years ago
MinRK
74795c2c56
add `setup.py css` command
...
It just does `cd IPython/html && fab css`, but I'm tired of doing it manually.
13 years ago
Paul Ivanov
b435738592
added check_for_tornado, closes #3916
...
This way, those relying on the output of `python setup.py install` get
clued in about the fact that it is required for the notebook
13 years ago
damianavila
309649e469
Fixed path in setupbase, again...
13 years ago
damianavila
839cd00e50
Fixed typo in reveal/*.tpl path in setupbase.
13 years ago
damianavila
61cc245423
Add reveal/*.tpl path to setupbase.
13 years ago
Jonathan Frederic
211eb6fb4e
Try including everything
...
(Trying to get config tests to pass)
13 years ago
Jonathan Frederic
2cf4fffb3b
Copy ipynb example files need for nbconvert tests
13 years ago
Paul Ivanov
1f997d3892
check for markdown no longer needed, closes #3610
...
After #3582 was merged, we no longer depend on a python version of
markdown
13 years ago
Matthias Bussonnier
9b08a557e5
Merge pull request #3538 from minrk/launch_ip
...
add IPython.start_ipython
A public API for starting a real (non-embedded) IPython instance.
should avoid API breakage in the future due to simple module renames, as has just happened with the removal of frontend.
For implementation purposes, I have added launch_new_instance as a classmethod on Application. I did this, because I wanted to add the ability to pass arguments to the instance, and didn't want to manually update every duplicate launch_new_instance.
closes #1537
13 years ago
MinRK
f4d4090fe3
use start_ipython in entry points
...
increases visibility of the public API to snoopers.
13 years ago
MinRK
00cf5001c5
fix tplx extension in nbconvert latex templates
13 years ago
MinRK
af65f1177d
include nbconvert templates in installation
...
fixes path spec in setupbase.py:find_package_data
13 years ago
Brian E. Granger
1c478745fa
Fixing imports in setupbase.py.
13 years ago
Brian E. Granger
072a94370d
Fixing install logic for nbconvert.
13 years ago
Paul Ivanov
0c11e07148
Merge pull request #3381 from minrk/retina
...
enable 2x (retina) display
13 years ago
MinRK
a3653e34b1
update references for IPython.html
13 years ago
MinRK
7f255c9d26
remove a few dangling frontends from setupbase
13 years ago
MinRK
38b58e784c
make sure test files are installed
13 years ago
Takafumi Arakaki
4aa2bca46c
Fix: "python ABS/PATH/TO/ipython.py" fails
...
The following line in setupbase.py was the problem. It assumes
that your CWD is always at the repository root. This patch removes
this assumption.
execfile(pjoin('IPython','core','release.py'), globals())
13 years ago
MinRK
cba52f17e5
use utils/submodule in setup.py
...
`setup.py anything` will halt with an informative error
if the submodules are unclean.
It will fetch the submodules if they are entirely absent.
Nothing will happen if it is not a git repo.
13 years ago
Thomas Kluyver
405e434d45
Fix for checking submodules location
...
Closes gh-3257
13 years ago
MinRK
6e32ee5546
ensure submodules exist prior to doing anything
...
git submodule update fires before distutils gets fired up
because distutils cannot be trusted.
13 years ago
Thomas Robitaille
a3500c3b15
Fix a bug that caused man pages to not be installed in Python 3 when running from the source tree.
14 years ago
MinRK
e972672ddd
remove spurious print statement from setupbase.py
14 years ago
MinRK
d2940640f5
record sysinfo in sdist
...
closes #2054
14 years ago
MinRK
abab58c0eb
add missing plugin .txt to package_data
14 years ago
MinRK
06188412b3
remove `ipython-qtconsole` gui-script
...
Always use `ipython qtconsole`
QtConsole entry in the Windows Start Menu is updated appropriately.
14 years ago
Thomas Kluyver
2c693fc89b
Exclude IPython.quarantine from installation.
14 years ago
Thomas Kluyver
2711bdf8dd
Fix writing git commit ID to a file on build with Python 3.
14 years ago
Fernando Perez
ffe488ee0b
Emergency fix for py3 breakage introduced in 576f6f (merge of #1538 )
...
Unicode literals (u'foo') aren't valid in Python 3.{1,2} (they will be
again in 3.3, and I failed to notice this. This is a quick fix, will
discuss further on-list. But I want master to remain working for py3
users.
14 years ago
Fernando Perez
4b73021647
Merge pull request #1445 from minrk/nosphinx
...
Don't build sphinx docs for sdists, it makes our source distributions unnecessarily large (and their generation much slower). Online access to docs is pervasive these days, and our docs are also much easier to build now, reducing the justification for keeping built docs in the source download.
14 years ago
MinRK
cc4f0f3619
use writelines when writing _sysinfo.py
14 years ago
MinRK
0495291a83
store git commit hash in utils._sysinfo instead of hidden git_commit_info.ini data file.
14 years ago
MinRK
212ec345e6
fix system->os.system typo
...
in setupbase.py
14 years ago
Thomas Kluyver
914d61f1bd
Make single setup script work on Python 2 and Python 3.
14 years ago
MinRK
5ffe131458
exclude mathjax from notebook package_data
...
closes #1018
15 years ago
MinRK
03cae6504e
add README to startup dir
15 years ago
MinRK
ba96d936ca
protect record_commit_info from configparser error
15 years ago
Fernando Perez
c27de98c35
Add SVG qt console icon to package data.
15 years ago
Thomas Kluyver
ce1973748f
Fix IPython.utils.sysinfo for Python 3.
15 years ago
Bernardo B. Marques
8e32204222
remove all trailling spaces
15 years ago
Thomas Kluyver
dba0917e83
Add Trove classifiers for PyPI.
15 years ago
Thomas Kluyver
4bf2e41967
Allow 'python setup.py install' to work correctly for either Python 2 or 3.
15 years ago
Thomas Kluyver
56a2b006e0
Make installation with Python 3 possible.
15 years ago
Brian E. Granger
ad791ad465
Finish removing ipython-notebook.
15 years ago
Brian E. Granger
c238febce1
Merge branch 'master' into htmlnotebook
...
Conflicts:
setupbase.py
15 years ago
MinRK
90b3e22759
Generate package list automatically in find_packages
...
Previously, the package list was manually specified, which meant that
it became out of date any time a package was added, and IPython would
become uninstallable. This would not be noticed for some time by
developers, who always use `setupegg.py --develop` or symlinks.
This update immediately revealed that IPython.zmq.tests and IPython.extensions.tests were never included in 0.11. Other than that, there is no difference in the package list.
15 years ago
Brian E. Granger
4973135bf1
Fixing setupbase.py for nbformat package.
15 years ago
Fernando Perez
d4123881c6
Disable PDF manual building for distribution and installation.
...
The PDF docs are huge, take forever to build and aren't particularly
useful in practice being so unwieldy. We can always build and
manually upload a static copy if there's demand, but they don't really
serve much useful purpose anymore and bloat our downloads.
15 years ago
Fernando Perez
7f4092a012
Fix installation of manpages.
15 years ago
Brian E. Granger
59a9cd1777
Updates to basic notebook format.
...
* The format now handles multiple output blocks.
* XML now as worksheets, cells and outputs tags.
15 years ago
Brian E. Granger
1140eeb679
Initial reorg of files complete.
...
I have moved things around to get ready for making the notebook
a full blown app, but have not actually made it an app. That is
next.
15 years ago
MinRK
f7a3abb023
include html frontend in packages/package_data
...
chmod +x ipython-notebook script
15 years ago
Brian Granger
6e36522cdf
Initial latex printing for sympy and fixes to autogrow.
15 years ago
MinRK
b26c59e66f
don't install deathrow
15 years ago
Thomas Kluyver
821c9609c0
Remove unused configobj and validate libraries from externals.
15 years ago
Thomas Kluyver
8a91843dd3
Don't try to install IPython.config.default (no longer there).
15 years ago
MinRK
713a71343e
rename ipythonqt to qtconsoleapp
...
the ipython-qtconsole script has been removed in favor of 'ipython qtconsole', but the ipython-qtconsole *GUI* script remains, when installed with setuptools.
15 years ago
MinRK
77cc373d3d
reorganize default config files to match profiles as directories
...
Old files are left in place, until applications make the transition to newapp.
15 years ago
epatters
8bd4f9272c
Clean up entry point definition is setup.py.
15 years ago
Evan Patterson
3ba4061e0e
Make ipython-qtconsole a GUI script in setuptools.
15 years ago
Jens Hedegaard Nielsen
c316414295
install zmq.qui fixes problems with using ipython --pylab gtk
15 years ago