abstract-math 0.0.0.19__tar.gz → 0.0.0.20__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.20}/PKG-INFO +1 -1
  2. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/setup.py +1 -1
  3. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/derive_tokens.py +0 -1
  4. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math.egg-info/PKG-INFO +1 -1
  5. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/README.md +0 -0
  6. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/pyproject.toml +0 -0
  7. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/setup.cfg +0 -0
  8. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/__init__.py +0 -0
  9. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/flask_scripts/__init__.py +0 -0
  10. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/flask_scripts/flask_utils.py +0 -0
  11. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/safe_math.py +0 -0
  12. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/__init__.py +0 -0
  13. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/flask_utils.py +0 -0
  14. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/main.py +0 -0
  15. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/__init__.py +0 -0
  16. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/constants/__init__.py +0 -0
  17. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/constants/distance_constants.py +0 -0
  18. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/constants/planet_constants.py +0 -0
  19. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/constants/time_constants.py +0 -0
  20. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/imports.py +0 -0
  21. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/utils/__init__.py +0 -0
  22. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/utils/escape_velocity.py +0 -0
  23. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/utils/geometry_utils.py +0 -0
  24. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math/solar_math/src/utils/velocity_utils.py +0 -0
  25. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math.egg-info/SOURCES.txt +0 -0
  26. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/src/abstract_math.egg-info/dependency_links.txt +0 -0
  27. {abstract_math-0.0.0.19 → abstract_math-0.0.0.20}/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.20
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.20',
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
@@ -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.20
4
4
  Author: putkoff
5
5
  Author-email: partners@abstractendeavors.com
6
6
  Classifier: Development Status :: 3 - Alpha