|
13 | 13 |
|
14 | 14 | from jupyter_packaging import ( |
15 | 15 | create_cmdclass, install_npm, ensure_targets, |
16 | | - combine_commands, ensure_python, |
| 16 | + combine_commands, |
17 | 17 | get_version, skip_if_exists |
18 | 18 | ) |
19 | 19 |
|
|
25 | 25 | # The name of the project |
26 | 26 | name = 'ipycanvas' |
27 | 27 |
|
28 | | -# Ensure a valid python version |
29 | | -ensure_python('>=3.5') |
30 | | - |
31 | 28 | # Get our version |
32 | 29 | version = get_version(pjoin(name, '_version.py')) |
33 | 30 |
|
|
51 | 48 | ('share/jupyter/nbextensions/ipycanvas', |
52 | 49 | nb_path, '*.js*'), |
53 | 50 | ('share/jupyter/labextensions/ipycanvas', lab_path, '**'), |
54 | | - ('etc/jupyter/nbconfig/notebook.d' , HERE, 'ipycanvas.json') |
| 51 | + ('etc/jupyter/nbconfig/notebook.d', HERE, 'ipycanvas.json') |
55 | 52 | ] |
56 | 53 |
|
57 | 54 |
|
|
87 | 84 | 'License :: OSI Approved :: BSD License', |
88 | 85 | 'Programming Language :: Python', |
89 | 86 | 'Programming Language :: Python :: 3', |
90 | | - 'Programming Language :: Python :: 3.5', |
91 | 87 | 'Programming Language :: Python :: 3.6', |
92 | 88 | 'Programming Language :: Python :: 3.7', |
| 89 | + 'Programming Language :: Python :: 3.8', |
| 90 | + 'Programming Language :: Python :: 3.9', |
| 91 | + 'Programming Language :: Python :: 3.10', |
93 | 92 | 'Framework :: Jupyter', |
94 | 93 | ], |
95 | | - include_package_data = True, |
96 | | - install_requires = [ |
| 94 | + include_package_data=True, |
| 95 | + install_requires=[ |
97 | 96 | 'ipywidgets>=7.6.0', |
98 | 97 | 'pillow>=6.0', |
99 | 98 | 'numpy' |
100 | 99 | ], |
101 | | - extras_require = {}, |
102 | | - entry_points = { |
103 | | - }, |
| 100 | + extras_require={}, |
| 101 | + entry_points={}, |
104 | 102 | ) |
105 | 103 |
|
106 | 104 | if __name__ == '__main__': |
|
0 commit comments