abstract-math 0.0.0.19__tar.gz → 0.0.0.21__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.

Potentially problematic release.


This version of abstract-math might be problematic. Click here for more details.

Files changed (27) hide show
  1. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/PKG-INFO +1 -1
  2. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/setup.py +1 -1
  3. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/derive_tokens.py +1 -2
  4. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/safe_math.py +0 -2
  5. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math.egg-info/PKG-INFO +1 -1
  6. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/README.md +0 -0
  7. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/pyproject.toml +0 -0
  8. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/setup.cfg +0 -0
  9. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/__init__.py +0 -0
  10. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/flask_scripts/__init__.py +0 -0
  11. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/flask_scripts/flask_utils.py +0 -0
  12. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/__init__.py +0 -0
  13. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/flask_utils.py +0 -0
  14. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/main.py +0 -0
  15. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/__init__.py +0 -0
  16. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/constants/__init__.py +0 -0
  17. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/constants/distance_constants.py +0 -0
  18. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/constants/planet_constants.py +0 -0
  19. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/constants/time_constants.py +0 -0
  20. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/imports.py +0 -0
  21. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/utils/__init__.py +0 -0
  22. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/utils/escape_velocity.py +0 -0
  23. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/utils/geometry_utils.py +0 -0
  24. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math/solar_math/src/utils/velocity_utils.py +0 -0
  25. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math.egg-info/SOURCES.txt +0 -0
  26. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math.egg-info/dependency_links.txt +0 -0
  27. {abstract_math-0.0.0.19 → abstract_math-0.0.0.21}/src/abstract_math.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abstract_math
3
- Version: 0.0.0.19
3
+ Version: 0.0.0.21
4
4
  Author: putkoff
5
5
  Author-email: partners@abstractendeavors.com
6
6
  Classifier: Development Status :: 3 - Alpha
@@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
4
4
  long_description = fh.read()
5
5
  setuptools.setup(
6
6
  name='abstract_math',
7
- version='0.0.0.19',
7
+ version='0.0.0.21',
8
8
  author='putkoff',
9
9
  author_email='partners@abstractendeavors.com',
10
10
  description="",
@@ -1,6 +1,5 @@
1
1
  from decimal import Decimal, getcontext
2
2
  from .safe_math import *
3
- from .safe_math import exp_it, divide_it # if you need these
4
3
 
5
4
  # High precision for decimal ops
6
5
  getcontext().prec = 50
@@ -8,7 +7,7 @@ getcontext().prec = 50
8
7
  # SOL constants
9
8
  SOL_DECIMAL_PLACE = 9
10
9
  # lamports per SOL = 10**9
11
- SOL_LAMPORTS = sol_lamports = int(exponential(1, exp=SOL_DECIMAL_PLACE, num=1))
10
+ SOL_LAMPORTS = sol_lamports = int(exponentials(1, exp=SOL_DECIMAL_PLACE, num=1))
12
11
 
13
12
 
14
13
  def get_proper_args(strings, *args, **kwargs):
@@ -1,8 +1,6 @@
1
1
  from abstract_utilities import *
2
2
  import math
3
3
  #math functions ------------------------------------------------------------------------------------------------------
4
- def exponential(value,exp=9,num=-1):
5
- return multiply_it(value,exp_it(10,exp,num))
6
4
 
7
5
  def add_it(number_1,number_2):
8
6
  if return_0(number_1,number_2)==float(0):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abstract_math
3
- Version: 0.0.0.19
3
+ Version: 0.0.0.21
4
4
  Author: putkoff
5
5
  Author-email: partners@abstractendeavors.com
6
6
  Classifier: Development Status :: 3 - Alpha