PyMaterials Manager#
PyMaterials Manager is a Python package for unifying material management across the Ansys portfolio.
Installation#
Two installation modes are provided: user and developer.
Install in user mode#
Before installing the ansys-materials-manager
package, run this command to
ensure that you have the latest version of pip:
python -m pip install -U pip
Then, install the latest package for use with this command:
poetry run python -m pip install ansys-materials-manager
Install in development mode#
Installing the ansys-materials-manager
package in developer mode allows
you to modify the source and enhance it.
Before contributing to PyMaterials Manager, see the PyAnsys Developer’s Guide.
To install PyMaterials Manager in developer mode, perform these steps:
Cloning the repository:
git clone https://github.com/pyansys/pymaterials-manager
Create a fresh-clean Python environment and activate it:
# Create a virtual environment python -m venv .venv # Activate it in a POSIX system source .venv/bin/activate # Activate it in Windows CMD environment .venv\Scripts\activate.bat # Activate it in Windows Powershell .venv\Scripts\Activate.ps1
Make sure that you have the latest required build system and doc, testing, and CI tools:
python -m pip install -U pip poetry tox python -m pip install -r requirements/requirements_build.txt python -m pip install -r requirements/requirements_doc.txt python -m pip install -r requirements/requirements_tests.txt
Install the project in editable mode:
poetry run python -m pip install ansys-materials-manager
Verify your development installation:
tox
Testing#
This project takes advantage of tox. This tool is used to automate common development tasks (similar to Makefile), but it is oriented towards Python development.
Use tox
#
tox uses environments, which are similar to Makefile
rules, to make it highly
customizable. In fact, this tool creates its own virtual environment so that anything
being tested is isolated from the project to guarantee the project’s integrity.
Descriptions follow of some of the most widely used environments:
tox -e style: Checks the code style of your project.
tox -e py: Runs your test suite.
tox -e py-coverage: Checks unit tests and code coverage.
tox -e doc: Builds the documentation of your project.
Perform raw testing#
If required, you can call style commands (such as black, isort, and flake8) or unit testing commands (such as pytest) from the command line. However, calling these commands does not guarantee that your project is being tested in an isolated environment, which is the reason why tools like tox exist.
Use pre-commit#
The style checks take advantage of pre-commit. Developers are not forced but encouraged to install this tool by running this command:
python -m pip install pre-commit && pre-commit install
Every time you stage some changes and try to commit them,
pre-commit
only allows them to be committed if all defined hooks succeed.
Documentation and issues#
For comprehensive information on PyMaterials Manager, see the latest release documentation. On the PyMaterials Manager Issues page, you can create issues to submit questions, report bugs, and request new features. This is the best place to post questions and code.
Distribution#
If you want to create either source or wheel files, start by installing the building requirements and then executing the build module:
python -m pip install -r requirements/requirements_build.txt
python -m build
python -m twine check dist/*