Skip to content

Commit

Permalink
Merge pull request #715 from betatim/prep-v01
Browse files Browse the repository at this point in the history
Prepare release v0.1
  • Loading branch information
yuvipanda committed Nov 7, 2018
2 parents 8ce391a + 1953228 commit 1975451
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Version x.y.z (unreleased)
==========================

Release date: the future

New features
------------


API changes
-----------


Bug fixes
---------



Version 0.1
===========

First light for BinderHub. Released on 2018-11-07 after over a year of running
"live at head" on https://mybinder.org this is the first tagged release.
2 changes: 1 addition & 1 deletion binderhub/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.0dev'
__version__ = '0.1.0'
15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
if not l.strip().startswith('#')
]

with open('README.rst', encoding="utf8") as f:
readme = f.read()

# Build our js and css files before packaging
subprocess.check_call(['npm', 'install'])
subprocess.check_call(['npm', 'run', 'webpack'])
Expand All @@ -26,6 +29,18 @@
author='Project Jupyter Contributors',
author_email='jupyter@googlegroups.com',
license='BSD',
url='https://binderhub.readthedocs.io/en/latest/',
project_urls={
'Documentation': 'https://binderhub.readthedocs.io/en/latest/',
'Funding': 'https://jupyter.org/about',
'Source': 'https://github.com/jupyterhub/binderhub/',
'Tracker': 'https://github.com/jupyterhub/binderhub/issues',
},
# this should be a whitespace separated string of keywords, not a list
keywords="reproducible science environments docker kubernetes",
description="Turn a Git repo into a collection of interactive notebooks",
long_description=readme,
long_description_content_type='text/x-rst',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
Expand Down

0 comments on commit 1975451

Please sign in to comment.