8000 added ipython.__bibtex__ attribute by Tafkas · Pull Request #6755 · ipython/ipython · GitHub
[go: up one dir, main page]

Skip to content

added ipython.__bibtex__ attribute #6755

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions IPython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
__license__ = release.license
__version__ = release.version
version_info = release.version_info
__bibtex__ = release.bibtex

def embed_kernel(module=None, local_ns=None, **kwargs):
"""Embed and start an IPython kernel in a given scope.
Expand Down
18 changes: 18 additions & 0 deletions IPython/core/release.py
6FAF Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,21 @@
'Topic :: System :: Distributed Computing',
'Topic :: System :: Shells'
]

bibtex = \
"""
@Article{PER-GRA:2007,
Author = {P\'erez, Fernando and Granger, Brian E.},
Title = {{IP}ython: a System for Interactive Scientific Computing},
Journal = {Computing in Science and Engineering},
Volume = {9},
Number = {3},
Pages = {21--29},
month = may,
year = 2007,
url = "http://ipython.org",
ISSN = "1521-9615",
doi = {10.1109/MCSE.2007.53},
publisher = {IEEE Computer Society},
}
"""
0