Skip to content

Commit 1975451

Browse files
authored
Merge pull request #715 from betatim/prep-v01
Prepare release v0.1
2 parents 8ce391a + 1953228 commit 1975451

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

CHANGES.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Version x.y.z (unreleased)
2+
==========================
3+
4+
Release date: the future
5+
6+
New features
7+
------------
8+
9+
10+
API changes
11+
-----------
12+
13+
14+
Bug fixes
15+
---------
16+
17+
18+
19+
Version 0.1
20+
===========
21+
22+
First light for BinderHub. Released on 2018-11-07 after over a year of running
23+
"live at head" on https://mybinder.org this is the first tagged release.

binderhub/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.0dev'
1+
__version__ = '0.1.0'

setup.py

+15
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
if not l.strip().startswith('#')
1616
]
1717

18+
with open('README.rst', encoding="utf8") as f:
19+
readme = f.read()
20+
1821
# Build our js and css files before packaging
1922
subprocess.check_call(['npm', 'install'])
2023
subprocess.check_call(['npm', 'run', 'webpack'])
@@ -26,6 +29,18 @@
2629
author='Project Jupyter Contributors',
2730
author_email='[email protected]',
2831
license='BSD',
32+
url='https://binderhub.readthedocs.io/en/latest/',
33+
project_urls={
34+
'Documentation': 'https://binderhub.readthedocs.io/en/latest/',
35+
'Funding': 'https://jupyter.org/about',
36+
'Source': 'https://github.com/jupyterhub/binderhub/',
37+
'Tracker': 'https://github.com/jupyterhub/binderhub/issues',
38+
},
39+
# this should be a whitespace separated string of keywords, not a list
40+
keywords="reproducible science environments docker kubernetes",
41+
description="Turn a Git repo into a collection of interactive notebooks",
42+
long_description=readme,
43+
long_description_content_type='text/x-rst',
2944
packages=find_packages(),
3045
include_package_data=True,
3146
install_requires=requirements,

0 commit comments

Comments
 (0)