Skip to content

Commit a71b54c

Browse files
committed
fix name
1 parent 8fd4d15 commit a71b54c

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"NotebookApp": {
33
"nbserver_extensions": {
4-
"jupyterlab_snippets": true
4+
"notebook_snippets": true
55
}
66
}
77
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "jupyterlab-snippets",
2+
"name": "notebook-snippets",
33
"version": "0.1.0",
44
"description": "code snippets integration for JupyterLab",
55
"keywords": [
66
"jupyter",
77
"jupyterlab",
88
"jupyterlab-extension"
99
],
10-
"homepage": "https://github.com/mkzilla/jupyterlab-snippets",
10+
"homepage": "https://github.com/mkzilla/notebook-snippets",
1111
"bugs": {
12-
"url": "https://github.com/mkzilla/jupyterlab-snippets/issues"
12+
"url": "https://github.com/mkzilla/notebook-snippets/issues"
1313
},
14-
"license": "BSD-3-Clause",
14+
"license": "MIT",
1515
"author": "chengyumeng",
1616
"files": [
1717
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
@@ -22,7 +22,7 @@
2222
"style": "style/index.css",
2323
"repository": {
2424
"type": "git",
25-
"url": "https://github.com/mkzilla/jupyterlab-snippets.git"
25+
"url": "https://github.com/mkzilla/notebook-snippets.git"
2626
},
2727
"scripts": {
2828
"build": "tsc",

setup.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,36 @@
99
data_files_spec = [(
1010
'etc/jupyter/jupyter_notebook_config.d',
1111
'jupyter-config/jupyter_notebook_config.d',
12-
'jupyterlab_snippets.json'
12+
'notebook_snippets.json'
1313
),]
1414

1515
cmdclass = create_cmdclass(data_files_spec=data_files_spec)
1616

1717
setup_dict = dict(
18-
name='jupyterlab_snippets',
19-
version=get_version("jupyterlab_snippets/_version.py"),
20-
description='A Jupyter Notebook server extension which acts as an endpoint for LaTeX.',
18+
name='notebook_snippets',
19+
version=get_version('notebook_snippets/_version.py'),
20+
description='code snippets integration for JupyterLab',
2121
packages=find_packages(),
2222
cmdclass=cmdclass,
23-
author = 'Jupyter Development Team',
24-
author_email = 'jupyter@googlegroups.com',
25-
url = 'http://jupyter.org',
26-
license = 'MIT',
27-
platforms = "Linux, Mac OS X, Windows",
28-
keywords = ['Jupyter', 'JupyterLab', 'snippets'],
29-
python_requires = '>=3.6',
30-
classifiers = [
23+
author='chengtian',
24+
author_email='792400644@qq.com',
25+
url='https://github.com/mkzilla/jupyterlab-snippets',
26+
license='MIT',
27+
platforms='Linux, Mac OS X, Windows',
28+
keywords=['Jupyter', 'JupyterLab', 'snippets'],
29+
python_requires='>=3.6',
30+
classifiers=[
3131
'Intended Audience :: Developers',
3232
'Intended Audience :: System Administrators',
3333
'Intended Audience :: Science/Research',
34-
'License :: OSI Approved :: BSD License',
34+
'License :: OSI Approved :: MIT License',
3535
'Programming Language :: Python',
3636
'Programming Language :: Python :: 3',
3737
],
3838
install_requires=[
3939
'notebook'
4040
],
41-
package_data={'jupyterlab_snippets':['api/*']},
41+
package_data={'notebook_snippets':['api/*']},
4242
)
4343

4444
try:

0 commit comments

Comments
 (0)