Min RK
8a644a9794
restore r.js-based build system from 4.x
9 years ago
Adam Chainz
a947025308
Convert readthedocs links for their .org -> .io migration for hosted projects
...
As per [their blog post of the 27th April](https://blog.readthedocs.com/securing-subdomains/ ) ‘Securing subdomains’:
> Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard.
Test Plan: Manually visited all the links I’ve modified.
9 years ago
Min RK
f707b78e54
exclude terminal tests on Windows
9 years ago
Peter Parente
de7753402b
Cleanup CLI naming
...
Based on first review by @minrk
* bundlerextension for consistency
* Move CLI entry point into bundler package
* Add bundler/__main__.py
(c) Copyright IBM Corp. 2016
10 years ago
Peter Parente
8fb670904b
First pass migrating from jupyter_cms
...
* Change handler for consistency with nbconvert
* Change bundler function API to take ContentManager models
* Change CLI to work as jupyter bundler
* Change UI to fit into existing template / JS structure
(c) Copyright IBM Corp. 2016
10 years ago
Sylvain Corlay
a91af4d642
Update traitlets API
10 years ago
Min RK
151bbb9d79
setup doesn't require genutils
...
the dependency is gone, but it was still declared
10 years ago
Min RK
41d6da235c
Merge pull request #879 from ellisonbg/nbext-pain
...
New nbextensions installation API
10 years ago
Matthias Geier
69b09b5af0
Add instructions for getting the doc-building requirements
...
... and add docs/requirements.txt
10 years ago
Matthias Geier
ac89707ecc
DOC: Trying to make a single place for contributor docs
...
See #1193 .
10 years ago
damianavila
f437042e40
First iteration on serverextension CLI. List working OK. I have the check and revisit the other ones: enable, disable.
10 years ago
Min RK
fdc1bb50da
simplify js build steps
...
- run npm, bower install every time (except from sdist).
Removes need to check npm, bower sources.
- only check `built/index.js` for build target
since webpack is only a single step now
10 years ago
Matthias Bussonnier
6ab2cd0dd6
Show warnings during tests
10 years ago
Thomas Kluyver
9bcac1d629
Remove explicit Python 3.3 classifier
...
If we're going to explicitly list 3.3, we should also be listing 3.4 and
3.5. But really we're compatible with any fairly recent Python 3
version, and will probably be compatible with future versions, so I
think it's best to just use the overall Python 3 classifier.
10 years ago
Min RK
fda86ad301
formatting for long_description
10 years ago
Min RK
025b0a2957
use more conservative rule to pull in setuptools
...
setuptools shouldn't be used for 'sdist upload'
10 years ago
Safia Abdalla
6cec1eada4
Added long_description to setup.py
11 years ago
Safia Abdalla
a7fae2c6f9
Added description text to setup.py
11 years ago
Matthias Bussonnier
2d5d548d79
Revert "Use NPM, node ES5, and browserify."
11 years ago
jdfreder
b88fa0163a
Use npm for js and less builds
11 years ago
Thomas Kluyver
e886d18add
Use entry points for scripts
...
To make Windows exe launchers, see jupyter/jupyter#15
11 years ago
Min RK
d54d7904ee
trigger `gulp js` as distutils step
...
ensures minified js is installed
11 years ago
Min RK
d71a59cc9f
s/jupyter_notebook/notebook
11 years ago
Matthias Bussonnier
f47ec80c4f
replace jupyter_nbformat by nbformat
...
Also replace the `import nbformat as nbformat` by `import nbformat`
and change the name of the installed egg.
11 years ago
Min RK
441c380d3b
ipython_kernel is ipykernel
11 years ago
Min RK
011f60e46b
s/jupyter_nbconvert/nbconvert/
11 years ago
stuntgoat
d824088f7e
add sphinx to extras
11 years ago
Min RK
f9cb268e0d
add `setup.py js`
...
from JupyterHub
- fetches node tools locally with npm
- runs bower
- setup.py css uses local less as well,
so no need to `npm install -g` anything.
11 years ago
Min RK
b9e241b8c1
remove unused IPython code from setup, setupbase
11 years ago
Min RK
402bd06c41
add ipython[kernel]
...
which depends on ipython_kernel
removing the need to install 'all' on travis
11 years ago
Min RK
aa44573181
remove qtconsole
11 years ago
Min RK
1c20a2baae
remove ipython_parallel
11 years ago
Min RK
4317b94de5
remove nbformat
...
ipython[nbformat] depends on jupyter_nbformat
11 years ago
Min RK
f508433a8a
add traitlets as setup.py dependency
11 years ago
Min RK
7d841d32c9
Revert "use testpath.tempdir for utils.tempdir"
11 years ago
Min RK
d97d8ced2f
use testpath.tempdir for utils.tempdir
...
instead of adding tempdir to genutils
11 years ago
Min RK
089b0d09cd
disable install from master
...
while it's broken by The Big Split
with informative note about `pip install -e`
11 years ago
Min RK
d88f832f06
remove pickleshare from external
11 years ago
MinRK
f0f9cdf3ae
remove non-setuptools dependency checks
11 years ago
MinRK
d4e386b0bc
remove simplegeneric from external
...
make it a dependency
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
MinRK
2f8f12cfb1
remove decorator from external
11 years ago
MinRK
31250d29b8
remove path from external
11 years ago
Thomas Kluyver
377081e02e
Move IPython lexers module to lib
...
Closes gh-7941
I've left a backwards compatibility module in
IPython.nbconvert.utils.lexers - I don't know if anyone is importing it
directly, but since we put it in entry points, we should probably
consider it public API.
11 years ago
Min RK
809e79b6e4
bump pyzmq version dependency to 13
...
pyzmq < 13 doesn't work with tornado >= 3, which we also require.
This results in clearer error messages when pyzmq is too old.
11 years ago
Min RK
6d9b7c918c
add terminado as [notebook] dep on non-Windows
11 years ago
Min RK
fe64986161
calculate 'all' dependency set after finishing the rest
...
some platform-dependent things were excluded from 'all'
11 years ago
Lev Abalkin
f6c9dc44b7
Closes #7558 : Added pygments entry points for ipython lexers.
11 years ago
Min RK
67124b4fcc
remove strict arg from css_js_prerelease
11 years ago