Add the sample_package folder to the project
The sample_package folder serves as an example in notebook 02 as to what a Python package looks like. Its contents actually belong to the chapter on object-orientation.
This commit is contained in:
parent
c3fc760e70
commit
ec3097e220
4 changed files with 414 additions and 0 deletions
5
sample_package/__init__.py
Normal file
5
sample_package/__init__.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""This package provides Vectors and Matrices."""
|
||||
|
||||
from .matrix import Matrix
|
||||
from .utils import norm
|
||||
from .vector import Vector
|
||||
Loading…
Add table
Add a link
Reference in a new issue