Skip to content

Commit ac9c2e9

Browse files
committed
Add metadata for new pypi.org
1 parent 85ca084 commit ac9c2e9

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,22 +60,35 @@ 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 :: MacOS',
83+
'Operating System :: Microsoft :: Windows',
84+
'Operating System :: POSIX :: Linux',
7585
'Programming Language :: Python',
7686
'Programming Language :: Python :: 2.7',
7787
'Programming Language :: Python :: 3',
7888
'Programming Language :: Python :: 3.3',
89+
'Programming Language :: Python :: 3.4',
90+
'Programming Language :: Python :: 3.5',
91+
'Programming Language :: Python :: 3.6',
7992
],
8093
install_requires = [
8194
'traitlets',
@@ -85,6 +98,7 @@ def run(self):
8598
'entrypoints',
8699
'tornado>=4.1',
87100
],
101+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4',
88102
extras_require = {
89103
'test': ['ipykernel', 'ipython', 'mock'],
90104
'test:python_version == "3.3"': ['pytest<3.3.0'],

0 commit comments

Comments
 (0)