1 Star 0 Fork 0

wl4g-collect/jupyter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.67 KB
一键复制 编辑 原始数据 按行查看 历史
Bruno P. Kinoshita 提交于 2019-10-12 14:04 . Fix project name typo
#!/usr/bin/env python
# coding: utf-8
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from __future__ import print_function
import os
import sys
from distutils.core import setup
pjoin = os.path.join
here = os.path.abspath(os.path.dirname(__file__))
setup_args = dict(
name = 'jupyter',
version = '1.1.0',
description = "Jupyter metapackage. Install all the Jupyter components in one go.",
long_description = """Install the Jupyter system, including the notebook, qtconsole, and the IPython kernel.""",
author = "Jupyter Development Team",
author_email = "jupyter@googlegroups.org",
py_modules = [],
install_requires = [
'notebook',
'qtconsole',
'jupyter-console',
'nbconvert',
'ipykernel',
'ipywidgets',
],
url = "http://jupyter.org",
license = "BSD",
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
)
if any(bdist in sys.argv for bdist in ['bdist_wheel', 'bdist_egg']):
import setuptools
if __name__ == '__main__':
setup(**setup_args)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wl4g-collect/jupyter.git
git@gitee.com:wl4g-collect/jupyter.git
wl4g-collect
jupyter
jupyter
master

搜索帮助