From 31564cc45e52418a7592361007bc7295867d1c4a Mon Sep 17 00:00:00 2001 From: bleudev Date: Mon, 10 Jun 2024 23:04:08 +0300 Subject: [PATCH] Init progressions classes --- ufpy/__init__.py | 3 +++ ufpy/algebra/__init__.py | 2 ++ ufpy/algebra/arithmetic.py | 6 ++++++ ufpy/algebra/func_sequence.py | 6 ++++++ 4 files changed, 17 insertions(+) create mode 100644 ufpy/algebra/__init__.py create mode 100644 ufpy/algebra/arithmetic.py create mode 100644 ufpy/algebra/func_sequence.py diff --git a/ufpy/__init__.py b/ufpy/__init__.py index e15f6f8..6dfd2b2 100644 --- a/ufpy/__init__.py +++ b/ufpy/__init__.py @@ -1,7 +1,10 @@ __version__ = '0.1.2' +from ufpy import algebra # Typing package from ufpy import typ +from ufpy.algebra.arithmetic import * +from ufpy.algebra.func_sequence import * from ufpy.cmp import * from ufpy.math_op import * from ufpy.path_tools import * diff --git a/ufpy/algebra/__init__.py b/ufpy/algebra/__init__.py new file mode 100644 index 0000000..beffc62 --- /dev/null +++ b/ufpy/algebra/__init__.py @@ -0,0 +1,2 @@ +from ufpy.algebra.arithmetic import * +from ufpy.algebra.func_sequence import * diff --git a/ufpy/algebra/arithmetic.py b/ufpy/algebra/arithmetic.py new file mode 100644 index 0000000..a62e440 --- /dev/null +++ b/ufpy/algebra/arithmetic.py @@ -0,0 +1,6 @@ +__all__ = ( + 'Arithmetic', +) + +class Arithmetic: + ... diff --git a/ufpy/algebra/func_sequence.py b/ufpy/algebra/func_sequence.py new file mode 100644 index 0000000..b52aee4 --- /dev/null +++ b/ufpy/algebra/func_sequence.py @@ -0,0 +1,6 @@ +__all__ = ( + 'FunctionSequence', +) + +class FunctionSequence: + ...