python-jupyter-core/0001-add-setup.py.patch

24 lines
721 B
Diff
Raw Normal View History

2022-11-10 11:23:03 +08:00
--- c/setup.py 1970-01-01 08:00:00.000000000 +0800
+++ a/setup.py 2022-11-15 09:25:30.055103630 +0800
@@ -0,0 +1,20 @@
+#!/usr/bin/env python
+
+from setuptools import setup
+
+if __name__ == "__main__":
+ setup(
+ name = "jupyter_core",
+ version = "5.0.0",
+ python_requires = ">=3.8",
+ classifiers = [
+ "Framework :: Jupyter",
+ "Intended Audience :: Developers",
+ "Intended Audience :: System Administrators",
+ "Intended Audience :: Science/Research",
+ "License :: OSI Approved :: BSD License",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 3"
+ ]
+ )
+