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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: algreduce
3
- Version: 1.0.0
3
+ Version: 1.0
4
4
  Summary: simplify and format algebraic expressions, solve quadratic and cubic equations
5
5
  Home-page: https://github.com/Kaiserschlafen/algreduce
6
6
  Author: Kaiserschlafen
@@ -1,4 +1,4 @@
1
- from cubic_solver import solve_cubic
1
+ from .cubic_solver import solve_cubic
2
2
 
3
3
  def main():
4
4
  print('Hi! I can help you solve cubic equation: ax³ + bx² + cx + d = 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:
@@ -1,4 +1,4 @@
1
- from quadratic_solver import solve_quadratic
1
+ from .quadratic_solver import solve_quadratic
2
2
 
3
3
  def main():
4
4
  print('Hi! I can help you solve quadratic equation: ax² + bx + c = 0!')
@@ -1,6 +1,6 @@
1
1
  import math
2
2
 
3
- from algreduce import is_square, square, fraction, sqfrac
3
+ from .algreduce import is_square, square, fraction, sqfrac
4
4
 
5
5
  # solve quadratic equation: ax² + bx + c = 0
6
6
  def solve_quadratic(a: int, b: int, c: int) -> dict:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: algreduce
3
- Version: 1.0.0
3
+ Version: 1.0
4
4
  Summary: simplify and format algebraic expressions, solve quadratic and cubic equations
5
5
  Home-page: https://github.com/Kaiserschlafen/algreduce
6
6
  Author: Kaiserschlafen
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='algreduce',
5
- version='1.0.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