koatl-kernel 1.0__tar.gz → 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: koatl-kernel
3
- Version: 1.0
3
+ Version: 1.0.1
4
4
  Summary: Koatl kernel for Jupyter
5
5
  Project-URL: Homepage, https://github.com/skkestrel/koatl
6
6
  Author-email: Kevin <skkestrel@gmail.com>
@@ -35,6 +35,13 @@ Requires-Dist: jupyter-client
35
35
  Requires-Dist: koatl
36
36
  Provides-Extra: test
37
37
  Requires-Dist: jupyter-kernel-test; extra == 'test'
38
- Description-Content-Type: text/x-rst
38
+ Description-Content-Type: text/markdown
39
39
 
40
- This is the jupyter kernel for koatl.
40
+ This is the jupyter kernel for koatl.
41
+
42
+ Version number is in `koatl_kernel/__init__.py`
43
+
44
+ ```
45
+ python3 -m build
46
+ python3 -m twine upload --repository pypi dist/*
47
+ ```
@@ -0,0 +1,8 @@
1
+ This is the jupyter kernel for koatl.
2
+
3
+ Version number is in `koatl_kernel/__init__.py`
4
+
5
+ ```
6
+ python3 -m build
7
+ python3 -m twine upload --repository pypi dist/*
8
+ ```
@@ -1,3 +1,3 @@
1
- __version__ = "1.0"
1
+ __version__ = "1.0.1"
2
2
 
3
3
  from .kernel import KoatlKernel
@@ -10,7 +10,7 @@ dynamic = [
10
10
  "version",
11
11
  ]
12
12
  description = "Koatl kernel for Jupyter"
13
- readme = "README.rst"
13
+ readme = "README.md"
14
14
  license = { file = "LICENSE" }
15
15
  authors = [
16
16
  { name = "Kevin", email = "skkestrel@gmail.com" },
@@ -1 +0,0 @@
1
- This is the jupyter kernel for koatl.
File without changes
File without changes
File without changes