istr-python 0.0.5__tar.gz → 0.0.6__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.1
2
2
  Name: istr-python
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: istr is a module to use strings as if they were integers.
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Requires-Python: >=3.7
@@ -0,0 +1,2 @@
1
+ from .istr import *
2
+ from .istr import __version__
@@ -2,6 +2,13 @@ from functools import partial
2
2
  import math
3
3
  import contextlib
4
4
 
5
+ # _ _
6
+ # (_) ___ | |_ _ __
7
+ # | |/ __|| __|| '__|
8
+ # | |\__ \| |_ | |
9
+ # |_||___/ \__||_| use strings as integers
10
+
11
+ __version__ = "0.0.6"
5
12
 
6
13
  class istr(str):
7
14
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: istr-python
3
- Version: 0.0.5
3
+ Version: 0.0.6
4
4
  Summary: istr is a module to use strings as if they were integers.
5
5
  Author-email: Ruud van der Ham <rt.van.der.ham@gmail.com>
6
6
  Requires-Python: >=3.7
@@ -1,15 +1,15 @@
1
- [build-system]
2
- requires = ["setuptools"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "istr-python"
7
- authors = [
8
- {name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com"}
9
- ]
10
- description = "istr is a module to use strings as if they were integers."
11
- version = "0.0.5"
12
- readme = "README.md"
13
- requires-python = ">=3.7"
14
- dependencies = [
15
- ]
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "istr-python"
7
+ authors = [
8
+ {name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com"}
9
+ ]
10
+ description = "istr is a module to use strings as if they were integers."
11
+ version = "0.0.6"
12
+ readme = "README.md"
13
+ requires-python = ">=3.7"
14
+ dependencies = [
15
+ ]
@@ -1 +0,0 @@
1
- from .istr import *
File without changes
File without changes