Thomas Kluyver
431e078992
Add sample wav file to package_data
12 years ago
MinRK
71d6a80629
add `setup.py jsversion`
...
for writing the IPython version to `IPython.version` in javascript.
supersedes #4357
12 years ago
Thomas Kluyver
655e870d02
Add comment to automatically generated scripts.
12 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.
12 years ago
Thomas Kluyver
e8d357707a
Fix renaming scripts
12 years ago
Thomas Kluyver
432377439b
Fix renaming scripts with 3 suffix on Python 3
12 years ago
Min RK
d1de1d26f4
Merge pull request #4198 from jdfreder/versionconversion_nbconvert
...
add upgrade / downgrade to nbformat
12 years ago
Paul Ivanov
d46a7d6b75
include js tests in package_data
12 years ago
Thomas Kluyver
0cd7d8a5de
Remove pycolor script
12 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
14 years ago
MinRK
03cae6504e
add README to startup dir
14 years ago
MinRK
ba96d936ca
protect record_commit_info from configparser error
14 years ago