Skip to content

Commit 22d487a

Browse files
committed
Publish v0.1.0
1 parent a7e538b commit 22d487a

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
*.bundle.*
2+
dist/
3+
jupyterlab_github.egg-info/
4+
jupyterlab_github/__pycache__/
25
lib/
36
test/build/*
47
node_modules/

setup.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,24 @@
55

66
setuptools.setup(
77
name='jupyterlab_github',
8+
description='A Jupyter Notebook server extension which acts as a proxy for GitHub API requests.',
89
version='0.1.0',
910
packages=setuptools.find_packages(),
11+
author = 'Jupyter Development Team',
12+
author_email = '[email protected]',
13+
url = 'http://jupyter.org',
14+
license = 'BSD',
15+
platforms = "Linux, Mac OS X, Windows",
16+
keywords = ['Jupyter', 'JupyterLab', 'GitHub'],
17+
classifiers = [
18+
'Intended Audience :: Developers',
19+
'Intended Audience :: System Administrators',
20+
'Intended Audience :: Science/Research',
21+
'License :: OSI Approved :: BSD License',
22+
'Programming Language :: Python',
23+
'Programming Language :: Python :: 2.7',
24+
'Programming Language :: Python :: 3',
25+
],
1026
install_requires=[
1127
'notebook'
1228
],

0 commit comments

Comments
 (0)