algreduce 1.0.0__tar.gz → 1.0__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.
- {algreduce-1.0.0 → algreduce-1.0}/PKG-INFO +1 -1
- {algreduce-1.0.0 → algreduce-1.0}/algreduce/cubic_cli.py +1 -1
- {algreduce-1.0.0 → algreduce-1.0}/algreduce/cubic_solver.py +1 -1
- {algreduce-1.0.0 → algreduce-1.0}/algreduce/quadratic_cli.py +1 -1
- {algreduce-1.0.0 → algreduce-1.0}/algreduce/quadratic_solver.py +1 -1
- {algreduce-1.0.0 → algreduce-1.0}/algreduce.egg-info/PKG-INFO +1 -1
- {algreduce-1.0.0 → algreduce-1.0}/setup.py +1 -1
- {algreduce-1.0.0 → algreduce-1.0}/LICENSE.txt +0 -0
- {algreduce-1.0.0 → algreduce-1.0}/README.md +0 -0
- {algreduce-1.0.0 → algreduce-1.0}/algreduce/__init__.py +0 -0
- {algreduce-1.0.0 → algreduce-1.0}/algreduce/algreduce.py +0 -0
- {algreduce-1.0.0 → algreduce-1.0}/algreduce.egg-info/SOURCES.txt +0 -0
- {algreduce-1.0.0 → algreduce-1.0}/algreduce.egg-info/dependency_links.txt +0 -0
- {algreduce-1.0.0 → algreduce-1.0}/algreduce.egg-info/top_level.txt +0 -0
- {algreduce-1.0.0 → algreduce-1.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import math
|
|
2
2
|
|
|
3
|
-
from algreduce import is_square, square, cbrt, is_cube, cube, fraction, sqfrac, cbfrac, cubic_root
|
|
3
|
+
from .algreduce import is_square, square, cbrt, is_cube, cube, fraction, sqfrac, cbfrac, cubic_root
|
|
4
4
|
|
|
5
5
|
# solve cubic equation: ax³ + bx² + cx + d = 0
|
|
6
6
|
def solve_cubic(a: int, b: int, c: int, d: int) -> dict:
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='algreduce',
|
|
5
|
-
version='1.0
|
|
5
|
+
version='1.0',
|
|
6
6
|
author='Kaiserschlafen',
|
|
7
7
|
description='simplify and format algebraic expressions, solve quadratic and cubic equations',
|
|
8
8
|
long_description=open('README.md', encoding='utf-8').read(),
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|