abstract-math 0.0.0.22__tar.gz → 0.0.0.24__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.22 → abstract_math-0.0.0.24}/PKG-INFO +1 -1
  2. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/setup.py +1 -1
  3. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/flask_scripts/flask_utils.py +1 -0
  4. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/imports.py +1 -1
  5. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math.egg-info/PKG-INFO +1 -1
  6. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/README.md +0 -0
  7. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/pyproject.toml +0 -0
  8. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/setup.cfg +0 -0
  9. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/__init__.py +0 -0
  10. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/derive_tokens.py +0 -0
  11. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/flask_scripts/__init__.py +0 -0
  12. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/safe_math.py +0 -0
  13. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/__init__.py +0 -0
  14. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/flask_utils.py +0 -0
  15. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/main.py +0 -0
  16. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/__init__.py +0 -0
  17. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/constants/__init__.py +0 -0
  18. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/constants/distance_constants.py +0 -0
  19. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/constants/planet_constants.py +0 -0
  20. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/constants/time_constants.py +0 -0
  21. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/utils/__init__.py +0 -0
  22. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/utils/escape_velocity.py +0 -0
  23. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/utils/geometry_utils.py +0 -0
  24. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math/solar_math/src/utils/velocity_utils.py +0 -0
  25. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math.egg-info/SOURCES.txt +0 -0
  26. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/src/abstract_math.egg-info/dependency_links.txt +0 -0
  27. {abstract_math-0.0.0.22 → abstract_math-0.0.0.24}/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.22
3
+ Version: 0.0.0.24
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.22',
7
+ version='0.0.0.24',
8
8
  author='putkoff',
9
9
  author_email='partners@abstractendeavors.com',
10
10
  description="",
@@ -1,4 +1,5 @@
1
1
  from abstract_flask import * # must provide Blueprint, request, jsonify, get_request_data, get_logFile, offer_help
2
+ from ..solar_math import *
2
3
  # Auto-generated routes
3
4
  math_data_bp = Blueprint('math_data_bp', __name__, url_prefix='/utils')
4
5
  logger = get_logFile('math_data_bp')
@@ -1,5 +1,5 @@
1
1
  import math
2
2
  from typing import Dict, Callable, Optional, Any
3
- from ....safe_math import (
3
+ from ...safe_math import (
4
4
  multiply_it as mul, divide_it as div, add_it as add, subtract_it as sub, exp_it as exp
5
5
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: abstract_math
3
- Version: 0.0.0.22
3
+ Version: 0.0.0.24
4
4
  Author: putkoff
5
5
  Author-email: partners@abstractendeavors.com
6
6
  Classifier: Development Status :: 3 - Alpha