Metadata-Version: 2.1
Name: lapack4abaqus
Version: 1.0.1.dev0
Summary: Create lapack.f for Abaqus to include.
Author-email: HUANG Lihao <huang-lihao@outlook.com>
Project-URL: Homepage, https://github.com/huang-lihao/lapack4abaqus
Project-URL: Bug Tracker, https://github.com/huang-lihao/lapack4abaqus/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# lapack4abaqus
Create `lapack.f` for Abaqus to include (Add `k` to the name of each subroutine and function).

# Install
Use PyPI to install [# lapack4abaqus
](https://pypi.org/project/# lapack4abaqus
/):
```sh
pip install lapack4abaqus
```

# Usage
```python
from lapack4abaqus import gen_lapack

gen_lapack(
    functions = ["dgetrf", "dgetri"], # list of desired funtions or subroutines
)
```
