Skip to content

Commit

Permalink
Init progressions classes
Browse files Browse the repository at this point in the history
  • Loading branch information
bleudev committed Jun 10, 2024
1 parent 6b21b19 commit 31564cc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ufpy/__init__.py
Original file line number Diff line number Diff line change
@@ -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 *
Expand Down
2 changes: 2 additions & 0 deletions ufpy/algebra/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from ufpy.algebra.arithmetic import *
from ufpy.algebra.func_sequence import *
6 changes: 6 additions & 0 deletions ufpy/algebra/arithmetic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
__all__ = (
'Arithmetic',
)

class Arithmetic:
...
6 changes: 6 additions & 0 deletions ufpy/algebra/func_sequence.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
__all__ = (
'FunctionSequence',
)

class FunctionSequence:
...

0 comments on commit 31564cc

Please sign in to comment.