Name | pypsbuilder JSON |
Version |
2.6.2
JSON |
| download |
home_page | None |
Summary | THERMOCALC front-end for constructing and analyzing PT pseudosections |
upload_time | 2025-02-11 12:32:36 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.10 |
license | MIT License
Simplistic THERMOCALC front-end for constructing PT pseudosections.
Copyright (c) 2015, Ondrej Lexa
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE. |
keywords |
thermocalc
petrology
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# pypsbuilder
[](https://pypi.org/project/pypsbuilder/)
[](https://github.com/ondrolexa/pypsbuilder)
[](https://pypsbuilder.readthedocs.io/en/latest/?badge=latest)
Not that simplistic THERMOCALC front-end for constructing and visualizations of P-T, T-X and P-X pseudosections
## How to install
It is strongly suggested to install **pypsbuilder** into separate environment. You can create
Python virtual environment. For Linux and macOS use:
python -m venv .venv
source .venv/bin/activate
for Windows use Command Prompt or PowerShell:
python -m venv .venv
.venv\Scripts\activate
> [!NOTE]
> On Microsoft Windows, it may be required to set the execution policy in PowerShell for the user.
> You can do this by issuing the following PowerShell command:
> ```
> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
> ```
and install **pypsbuilder** using pip within the environment. **You should choose the UI framework using option** `pyqt5` **or** `pyqt6`:
pip install pypsbuilder[pyqt6]
JupyterLab could also be installed providing the `jupyter` option:
pip install pypsbuilder[pyqt6,jupyter]
## I'm using conda or mamba to manage environments
If you have already have conda or mamba installed, you can create environment with:
conda create -n pyps python=3.12.8 matplotlib shapely pyqt tqdm scikit-image qtpy jupyterlab
or
mamba create -n pyps python=3.12.8 matplotlib shapely pyqt tqdm scikit-image qtpy jupyterlab
Then activate the new environment:
conda activate pyps
or
mamba activate pyps
and install with pip. As PyQt is already installed with mamba/conda, we will install **pypsbuilder** without UI framework:
pip install pypsbuilder
> [!NOTE]
> If you encounter errors during install, try to install without upgrading dependencies:
> ```
> pip install --no-deps pypsbuilder
> ```
#### Upgrade existing installation
To upgrade an already installed **pypsbuilder** to the latest release:
pip install --upgrade pypsbuilder
or to the latest master version:
pip install --upgrade https://github.com/ondrolexa/pypsbuilder/archive/master.zip
## Documentation and tutorials
Check documentation and tutorials on RTD [https://pypsbuilder.readthedocs.io/en/latest/](https://pypsbuilder.readthedocs.io/en/latest/)
## License
pypsbuilder is free software: you can redistribute it and/or modify it under the terms of the MIT License. A copy of this license is provided in ``LICENSE`` file.
Raw data
{
"_id": null,
"home_page": null,
"name": "pypsbuilder",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": "Ondrej Lexa <lexa.ondrej@gmail.com>",
"keywords": "THERMOCALC, petrology",
"author": null,
"author_email": "Ondrej Lexa <lexa.ondrej@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/7f/63/3245816eb5d8b5ec1b2ba27a3d88d1c4f09091d658ab34c609ef0eb5fd5f/pypsbuilder-2.6.2.tar.gz",
"platform": null,
"description": "# pypsbuilder\n\n[](https://pypi.org/project/pypsbuilder/)\n[](https://github.com/ondrolexa/pypsbuilder)\n[](https://pypsbuilder.readthedocs.io/en/latest/?badge=latest)\n\nNot that simplistic THERMOCALC front-end for constructing and visualizations of P-T, T-X and P-X pseudosections\n\n## How to install\n\nIt is strongly suggested to install **pypsbuilder** into separate environment. You can create\nPython virtual environment. For Linux and macOS use:\n\n python -m venv .venv\n source .venv/bin/activate\n\nfor Windows use Command Prompt or PowerShell:\n\n python -m venv .venv\n .venv\\Scripts\\activate\n\n> [!NOTE]\n> On Microsoft Windows, it may be required to set the execution policy in PowerShell for the user.\n> You can do this by issuing the following PowerShell command:\n> ```\n> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser\n> ```\n\nand install **pypsbuilder** using pip within the environment. **You should choose the UI framework using option** `pyqt5` **or** `pyqt6`:\n\n pip install pypsbuilder[pyqt6]\n\nJupyterLab could also be installed providing the `jupyter` option:\n\n pip install pypsbuilder[pyqt6,jupyter]\n\n## I'm using conda or mamba to manage environments\n\nIf you have already have conda or mamba installed, you can create environment with:\n\n conda create -n pyps python=3.12.8 matplotlib shapely pyqt tqdm scikit-image qtpy jupyterlab\n\nor\n\n mamba create -n pyps python=3.12.8 matplotlib shapely pyqt tqdm scikit-image qtpy jupyterlab\n\nThen activate the new environment:\n\n conda activate pyps\n\nor\n\n mamba activate pyps\n\nand install with pip. As PyQt is already installed with mamba/conda, we will install **pypsbuilder** without UI framework:\n\n pip install pypsbuilder\n\n> [!NOTE]\n> If you encounter errors during install, try to install without upgrading dependencies:\n> ```\n> pip install --no-deps pypsbuilder\n> ```\n\n#### Upgrade existing installation\n\nTo upgrade an already installed **pypsbuilder** to the latest release:\n\n pip install --upgrade pypsbuilder\n\nor to the latest master version:\n\n pip install --upgrade https://github.com/ondrolexa/pypsbuilder/archive/master.zip\n\n## Documentation and tutorials\n\nCheck documentation and tutorials on RTD [https://pypsbuilder.readthedocs.io/en/latest/](https://pypsbuilder.readthedocs.io/en/latest/)\n\n## License\n\npypsbuilder is free software: you can redistribute it and/or modify it under the terms of the MIT License. A copy of this license is provided in ``LICENSE`` file.\n",
"bugtrack_url": null,
"license": "MIT License\n \n Simplistic THERMOCALC front-end for constructing PT pseudosections.\n Copyright (c) 2015, Ondrej Lexa\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "THERMOCALC front-end for constructing and analyzing PT pseudosections",
"version": "2.6.2",
"project_urls": {
"Changelog": "https://github.com/ondrolexa/pypsbuilder/blob/master/CHANGELOG.md",
"Documentation": "https://pypsbuilder.readthedocs.io",
"Homepage": "https://github.com/ondrolexa/pypsbuilder",
"Issues": "https://github.com/ondrolexa/pypsbuilder/issues",
"Repository": "https://github.com/ondrolexa/pypsbuilder.git"
},
"split_keywords": [
"thermocalc",
" petrology"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "506fa2b9739b1dcbdefb9a7130ea7b322e0553f0df0802862c107f2bad4a5ce5",
"md5": "57985d33c99d085db4b1911593170070",
"sha256": "5cd19305de7ca6652e5a3ee5268c2c8fd4c64f98d6ee27cef0a7094ad8d4375f"
},
"downloads": -1,
"filename": "pypsbuilder-2.6.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "57985d33c99d085db4b1911593170070",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 162110,
"upload_time": "2025-02-11T12:32:34",
"upload_time_iso_8601": "2025-02-11T12:32:34.467227Z",
"url": "https://files.pythonhosted.org/packages/50/6f/a2b9739b1dcbdefb9a7130ea7b322e0553f0df0802862c107f2bad4a5ce5/pypsbuilder-2.6.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f633245816eb5d8b5ec1b2ba27a3d88d1c4f09091d658ab34c609ef0eb5fd5f",
"md5": "3062a0c3cfd813402893b89e55cdd0d6",
"sha256": "92613189b168bdd96651248bd10460f9b651571aaeb88a4ce11171ad7666749f"
},
"downloads": -1,
"filename": "pypsbuilder-2.6.2.tar.gz",
"has_sig": false,
"md5_digest": "3062a0c3cfd813402893b89e55cdd0d6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 5121030,
"upload_time": "2025-02-11T12:32:36",
"upload_time_iso_8601": "2025-02-11T12:32:36.450933Z",
"url": "https://files.pythonhosted.org/packages/7f/63/3245816eb5d8b5ec1b2ba27a3d88d1c4f09091d658ab34c609ef0eb5fd5f/pypsbuilder-2.6.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-11 12:32:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ondrolexa",
"github_project": "pypsbuilder",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "pypsbuilder"
}