Skip to content

Commit

Permalink
fully bootstrap package with version and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Jul 6, 2017
1 parent 40ed71f commit 08b063e
Show file tree
Hide file tree
Showing 9 changed files with 2,409 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
papermill/_version.py export-subst
9 changes: 9 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
recursive-include papermill *.py

include setup.py
include README.rst
include LICENSE
include MANIFEST.in

include versioneer.py
include papermill/_version.py
2 changes: 0 additions & 2 deletions README.md

This file was deleted.

12 changes: 12 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
papermill
=========

|Logo|

⚠️ Papermill is a Work-in-progress and this README describes the intended state. 😁

Papermill allows Jupyter notebooks to be parametrized, executed, and summarized.

.. |Logo| image:: https://user-images.githubusercontent.com/836375/27924827-79260c18-6237-11e7-90b8-bdd781885503.png
:target: https://github.com/nteract/papermill
:alt: Papermill
5 changes: 5 additions & 0 deletions papermill/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from __future__ import absolute_import, division, print_function

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
Loading

0 comments on commit 08b063e

Please sign in to comment.