forked from jupyter/jupyter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (45 loc) · 1.63 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/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 = "[email protected]",
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 :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)
if any(bdist in sys.argv for bdist in ['bdist_wheel', 'bdist_egg']):
import setuptools
if __name__ == '__main__':
setup(**setup_args)