istr-python 0.0.3__tar.gz → 0.0.5__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.3
3
+ Version: 0.0.5
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
@@ -382,9 +382,7 @@ class istr(str):
382
382
 
383
383
 
384
384
  def main():
385
- zero=istr("0")
386
- print(bool(zero))
387
-
385
+ ...
388
386
 
389
387
  if __name__ == "__main__":
390
388
  main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: istr-python
3
- Version: 0.0.3
3
+ Version: 0.0.5
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
@@ -3,7 +3,6 @@ pyproject.toml
3
3
  istr/__init__.py
4
4
  istr/install istr.py
5
5
  istr/istr.py
6
- istr/sendmoremoney.py
7
6
  istr_python.egg-info/PKG-INFO
8
7
  istr_python.egg-info/SOURCES.txt
9
8
  istr_python.egg-info/dependency_links.txt
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools", "setuptools-scm"]
2
+ requires = ["setuptools"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -8,7 +8,7 @@ authors = [
8
8
  {name = "Ruud van der Ham", email = "rt.van.der.ham@gmail.com"}
9
9
  ]
10
10
  description = "istr is a module to use strings as if they were integers."
11
- version = "0.0.3"
11
+ version = "0.0.5"
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.7"
14
14
  dependencies = [
@@ -1,12 +0,0 @@
1
- import itertools
2
- from istr import istr
3
- import istr
4
- print(istr,istr(8))
5
-
6
- for s, e, n, d, m, o, r, y in istr(itertools.permutations("0123456789", 8)):
7
- if (m > 0) and ((s | e | n | d) + (m | o | r | e) == (m | o | n | e | y)):
8
- print(f" {s|e|n|d}")
9
- print(f" {m|o|r|e}")
10
- print("-----")
11
- print(m | o | n | e | y)
12
-
File without changes
File without changes