https://github.com/ansys/grantami-jobqueue
https://github.com/ansys/grantami-jobqueue
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ansys/grantami-jobqueue
- Owner: ansys
- License: mit
- Created: 2024-01-29T20:53:14.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-08T10:14:21.000Z (about 2 months ago)
- Last Synced: 2025-04-13T01:32:00.410Z (about 1 month ago)
- Language: Python
- Homepage: https://jobqueue.grantami.docs.pyansys.com/
- Size: 4.63 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Authors: AUTHORS
Awesome Lists containing this project
README
|pyansys| |python| |pypi| |GH-CI| |codecov| |MIT| |black|
.. |pyansys| image:: https://img.shields.io/badge/Py-Ansys-ffc107.svg?labelColor=black&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAABDklEQVQ4jWNgoDfg5mD8vE7q/3bpVyskbW0sMRUwofHD7Dh5OBkZGBgW7/3W2tZpa2tLQEOyOzeEsfumlK2tbVpaGj4N6jIs1lpsDAwMJ278sveMY2BgCA0NFRISwqkhyQ1q/Nyd3zg4OBgYGNjZ2ePi4rB5loGBhZnhxTLJ/9ulv26Q4uVk1NXV/f///////69du4Zdg78lx//t0v+3S88rFISInD59GqIH2esIJ8G9O2/XVwhjzpw5EAam1xkkBJn/bJX+v1365hxxuCAfH9+3b9/+////48cPuNehNsS7cDEzMTAwMMzb+Q2u4dOnT2vWrMHu9ZtzxP9vl/69RVpCkBlZ3N7enoDXBwEAAA+YYitOilMVAAAAAElFTkSuQmCC
:target: https://docs.pyansys.com/
:alt: PyAnsys.. |python| image:: https://img.shields.io/pypi/pyversions/ansys-grantami-jobqueue?logo=pypi
:target: https://pypi.org/project/ansys-grantami-jobqueue/
:alt: Python.. |pypi| image:: https://img.shields.io/pypi/v/ansys-grantami-jobqueue.svg?logo=python&logoColor=white
:target: https://pypi.org/project/ansys-grantami-jobqueue
:alt: PyPI.. |codecov| image:: https://codecov.io/gh/ansys/grantami-jobqueue/branch/main/graph/badge.svg
:target: https://codecov.io/gh/ansys/grantami-jobqueue
:alt: Codecov.. |GH-CI| image:: https://github.com/ansys/grantami-jobqueue/actions/workflows/ci_cd.yml/badge.svg
:target: https://github.com/ansys/grantami-jobqueue/actions/workflows/ci_cd.yml
:alt: GH-CI.. |MIT| image:: https://img.shields.io/badge/License-MIT-yellow.svg
:target: https://opensource.org/licenses/MIT
:alt: MIT.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat
:target: https://github.com/psf/black
:alt: BlackPyGranta JobQueue
=================..
_after-badgesPyGranta JobQueue allows you to import and export correctly formatted Excel and text files to and from
Granta MI.Dependencies
------------
.. readme_software_requirementsTo use PyGranta JobQueue, you must have access to a Granta MI 2024 R2 deployment.
The ``ansys.grantami.jobqueue`` package currently supports Python version 3.10 through 3.13.
.. readme_software_requirements_end
Installation
------------
.. readme_installationTo install the latest PyGranta JobQueue release from `PyPI `_,
run this command:.. code::
pip install ansys-grantami-jobqueue
To install a release compatible with a specific version of Granta MI, install the
`PyGranta `_ metapackage with a requirement specifier:.. code::
pip install pygranta==2024.2.0
To see which individual PyGranta package versions are installed with each version of the PyGranta metapackage, consult
the `Package versions `_ section of the PyGranta
documentation.Alternatively, to install the latest development version from the `PyGranta JobQueue repository `_,
run this command:.. code::
pip install git+https://github.com/ansys/grantami-jobqueue.git
To install a local *development* version with Git and Poetry, run these commands:
.. code::
git clone https://github.com/ansys/grantami-jobqueue
cd grantami-jobqueue
poetry installThe preceding commands install the package in development mode so that you can modify
it locally. Your changes are reflected in your Python setup after restarting the Python kernel... readme_installation_end