-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3fe2dae
commit d8f8055
Showing
3 changed files
with
7 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,7 @@ FROM jupyter/minimal-notebook | |
|
||
MAINTAINER Sebastian Riedel <[email protected]> | ||
|
||
RUN pip install \ | ||
git+git://github.com/uclmr/egal.git | ||
RUN pip install egal | ||
|
||
RUN jupyter nbextension install egal --py --sys-prefix | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,13 @@ | |
import os | ||
|
||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
|
||
|
||
setup( | ||
name='egal', # This is the name of your PyPI-package. | ||
version='0.1.0 ', # Update the version number for new releases | ||
version='0.1.2', # Update the version number for new releases | ||
scripts=[], # The name of your script, and also the command you'll be using for calling it | ||
packages=['egal'], | ||
author='Sebastian Riedel', | ||
long_description=read('README.md'), | ||
long_description="A jupyter extension to draw SVG images inline, within cells.", | ||
url='https://github.com/uclmr/egal', | ||
author_email='[email protected]', | ||
include_package_data=True, | ||
|