Skip to content

Commit

Permalink
Merge pull request #18 from fedorpashin/17
Browse files Browse the repository at this point in the history
#17 Prepare the package for the first release
  • Loading branch information
fedorpashin authored Sep 12, 2021
2 parents 32c8aa2 + ce07777 commit 8ef4730
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include tests *.py
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import linalg as la
print(
la.Solution(
la.System(
la.Matrix(
la.TridiagonalMatrix(
[4, 9],
[23, 5],
[5, 16, 2]
Expand Down
2 changes: 2 additions & 0 deletions linalg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = '0.0.1'

from .base.any_vector import *
from .base.any_matrix import *
from .base.any_system import *
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.mypy]
ignore_missing_imports = true
22 changes: 22 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
[metadata]
name = linalg
version = attr: linalg.__version__
author = Fedor Pashin
author_email = [email protected]
description = Linear algebra in object-oriented way.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/fedorpashin/linalg
license = MIT License
license_file = LICENSE.txt

[options]
zip_safe = False
package_dir = = .
packages = find_namespace:
install_requires =
final_class
overrides
multimethod
numpy

[flake8]
ignore = F811, F401, F403
max-line-length = 120
Expand Down

0 comments on commit 8ef4730

Please sign in to comment.