Skip to content

Commit 770f5c7

Browse files
authored
Merge pull request #359 from jupyter/auto-backport-of-pr-357
Backport PR #357 on branch 5.x
2 parents 2db081b + 9971263 commit 770f5c7

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

setup.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,29 @@ def run(self):
6060
name = name,
6161
version = version_ns['__version__'],
6262
packages = packages,
63-
description = "Jupyter protocol implementation and client libraries",
63+
description = 'Jupyter protocol implementation and client libraries',
6464
author = 'Jupyter Development Team',
6565
author_email = '[email protected]',
6666
url = 'https://jupyter.org',
6767
license = 'BSD',
6868
platforms = "Linux, Mac OS X, Windows",
6969
keywords = ['Interactive', 'Interpreter', 'Shell', 'Web'],
70+
project_urls = {
71+
'Documentation': 'https://jupyter-client.readthedocs.io',
72+
'Source': 'https://github.com/jupyter/jupyter_client/',
73+
'Tracker': 'https://github.com/jupyter/jupyter_client/issues',
74+
},
7075
classifiers = [
76+
'Framework :: Jupyter',
7177
'Intended Audience :: Developers',
78+
'Intended Audience :: Education',
7279
'Intended Audience :: System Administrators',
7380
'Intended Audience :: Science/Research',
7481
'License :: OSI Approved :: BSD License',
82+
'Operating System :: OS Independent',
7583
'Programming Language :: Python',
76-
'Programming Language :: Python :: 2.7',
84+
'Programming Language :: Python :: 2',
7785
'Programming Language :: Python :: 3',
78-
'Programming Language :: Python :: 3.3',
7986
],
8087
install_requires = [
8188
'traitlets',
@@ -84,6 +91,7 @@ def run(self):
8491
'python-dateutil>=2.1',
8592
'tornado>=4.1',
8693
],
94+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
8795
extras_require = {
8896
'test': ['ipykernel', 'ipython', 'mock'],
8997
'test:python_version == "3.3"': ['pytest<3.3.0'],

0 commit comments

Comments
 (0)