forked from jupyter/jupyter_core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
37 lines (34 loc) · 1.25 KB
/
setup.cfg
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
[metadata]
name = jupyter_core
version = attr: jupyter_core.version.__version__
description = Jupyter core package. A base package on which Jupyter projects rely.
long_description = There is no reason to install this package on its own.
author = Jupyter Development Team
author_email = [email protected]
url = https://jupyter.org
license = BSD
license_file = COPYING.md
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
[options]
py_modules = jupyter
packages = jupyter_core, jupyter_core.utils, jupyter_core.tests
include_package_data = True
python_requires = >=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4
install_requires =
traitlets
pywin32>=1.0 ; sys_platform == 'win32'
[options.entry_points]
console_scripts =
jupyter = jupyter_core.command:main
jupyter-migrate = jupyter_core.migrate:main
jupyter-troubleshoot = jupyter_core.troubleshoot:main
[bdist_wheel]
universal=1