Skip to content

Commit 2a3a2a0

Browse files
committed
tweak some metadata
1 parent d7709fa commit 2a3a2a0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

examples/simple/setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,14 @@ def add_data_files(path):
3434
version = VERSION,
3535
description = 'Jupyter Server Example',
3636
long_description = open('README.md').read(),
37-
python_requires = '>=3.5',
37+
python_requires = '>=3.6',
3838
install_requires = [
3939
'jupyter_server',
4040
'jinja2',
4141
],
42+
extras_require = {
43+
'test': ['pytest-jupyter'],
44+
},
4245
include_package_data=True,
4346
cmdclass = cmdclass,
4447
entry_points = {
@@ -52,4 +55,4 @@ def add_data_files(path):
5255

5356

5457
if __name__ == '__main__':
55-
setup(**setup_args)
58+
setup(**setup_args)

0 commit comments

Comments
 (0)