Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
mihiraggarwal committed May 16, 2024
1 parent a410ff9 commit a7b945f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# lin-alg
# nullity

A Python package for all things linear algebra, built in vanilla python3
Built during MAT-1001 / Linear Algebra at Ashoka University.
Expand All @@ -8,13 +8,13 @@ Built during MAT-1001 / Linear Algebra at Ashoka University.
The package is available on PyPI:

```ps
pip install lin_alg
pip install nullity
```

To start using, simply import the package in your Python file:

```py
from lin_alg import Matrix
from nullity import Matrix
```

## Usage
Expand Down
1 change: 0 additions & 1 deletion lin_alg/__init__.py

This file was deleted.

1 change: 1 addition & 0 deletions nullity/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from nullity.matrix import Matrix
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
long_description = f.read()

setup(
name="lin_alg",
name="nullity",
version=VERSION,
author="Mihir Aggarwal",
author_email="[email protected]",
Expand All @@ -18,7 +18,7 @@
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=['numpy'],
keywords=['linear', 'algebra', 'linear algebra', 'linalg', 'lin-alg', 'linearalgebra', 'eigen', 'eigenvalue', 'eigenvector'],
keywords=['linear', 'algebra', 'linear algebra', 'linalg', 'lin-alg', 'linearalgebra', 'eigen', 'eigenvalue', 'eigenvector', 'nullity', 'null', 'null space', 'rank nullity'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
Expand Down

0 comments on commit a7b945f

Please sign in to comment.