-
Notifications
You must be signed in to change notification settings - Fork 389
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #715 from betatim/prep-v01
Prepare release v0.1
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
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 |
---|---|---|
@@ -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. |
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 |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.1.0dev' | ||
__version__ = '0.1.0' |
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 |
---|---|---|
|
@@ -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']) | ||
|
@@ -26,6 +29,18 @@ | |
author='Project Jupyter Contributors', | ||
author_email='[email protected]', | ||
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, | ||
|