<p align="center">
<img width="125" src="https://raw.githubusercontent.com/ariffjeff/houdini-package-manager/main/docs/static/hpm.svg">
</p style = "margin-bottom: 2rem;">
<p align="center">
<img width="700" src="https://raw.githubusercontent.com/ariffjeff/houdini-package-manager/main/docs/static/hpm_screenshot.png">
</p style = "margin-bottom: 2rem;">
# Houdini Package Manager
[![Release](https://img.shields.io/github/v/release/ariffjeff/houdini-package-manager)](https://img.shields.io/github/v/release/ariffjeff/houdini-package-manager)
[![Build status](https://img.shields.io/github/actions/workflow/status/ariffjeff/houdini-package-manager/main.yml?branch=main)](https://github.com/ariffjeff/houdini-package-manager/actions/workflows/main.yml?query=branch%3Amain)
[![codecov](https://codecov.io/gh/ariffjeff/houdini-package-manager/branch/main/graph/badge.svg)](https://codecov.io/gh/ariffjeff/houdini-package-manager)
[![Commit activity](https://img.shields.io/github/commit-activity/m/ariffjeff/houdini-package-manager)](https://img.shields.io/github/commit-activity/m/ariffjeff/houdini-package-manager)
[![License](https://img.shields.io/github/license/ariffjeff/houdini-package-manager)](https://img.shields.io/github/license/ariffjeff/houdini-package-manager)
A comprehensive GUI package manager for Houdini. Manage all your plugins and create new packages with ease.
- **Download the application**: <https://houpm.com>
- **Github repository**: <https://github.com/ariffjeff/houdini-package-manager>
- **PyPI repository**: <https://pypi.org/project/houdini-package-manager>
## Install
1. Download the latest version from https://houpm.com
2. Unzip and store the folder anywhere you want.
3. Create a shortcut of the Houdini_Package_Manager-x.y.z.exe file from the folder.
4. Now you can run HPM from the shortcut, that's all there is to it!
## Building the project yourself
Note: This project was primarily tested with Python 3.9.10.
1. Install the [Poetry dependency manager](https://python-poetry.org/docs/#installation).
1. Clone the HPM project to a directory, open a terminal, and `cd` to it.
1. Do `poetry install`
1. Make your code changes and commit them.
- If you're adding other files/images/vectors/etc., put them somewhere in `houdini_package_manager/resources/`
1. Optional: Version bump the project
1. Version bump the project by doing `poetry version minor`. Use `major` or `patch` in place of `minor` if appropriate.
- Both `pyproject.toml` and `__version__.py` will be updated automatically due to [poetry-bumpversion](https://pypi.org/project/poetry-bumpversion/) being installed in this project.
1. Commit the version bump. The commit message should be the version number (e.g. `1.3.2`)
1. Do `make build-exe` to build the project. It will appear in `dist/`
- The pytests are run automatically. Skip them with `make build-exe TEST=0`
- `resources/` is copied over to the build folder automatically for you so you don't have to worry about it.
- The build folder and .exe name is determined by the version number set by the result of `poetry version ...` (referenced in the Makefile)
1. Do `make zip` to make a .zip of the build in `dist/`
1. Run the build by going to `dist/`, finding the .exe, and running it there.
- You can also run it by doing `make run-exe`, but be aware that this doesn't run it directly in the folder its in, which can lead to the issue of relative file paths not being able to find the files they're targetting if the paths have been set improperly... i.e. images failing to load. Make sure you set file paths with `utils.epath()` which automatically handles relative paths correctly for both the dev and build environment.
1. If you get unexpected results (something isn't working right):
1. Remove `-w` from the `build-exe:` action in the `Makefile`
1. Do `make build-exe` again.
1. Run the .exe and you'll notice a terminal pops up along with the app. If any errors occur you'll be able to see them there.
Raw data
{
"_id": null,
"home_page": "https://github.com/ariffjeff/houdini-package-manager",
"name": "houdini-package-manager",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.8,<3.12",
"maintainer_email": "",
"keywords": "",
"author": "Ariff Jeff",
"author_email": "ariffjeff@icloud.com",
"download_url": "https://files.pythonhosted.org/packages/42/13/bf6e372ee52fd5d20ffd9c2148b14b1707414153d44cb7015a65e9d2d33c/houdini_package_manager-1.0.9.tar.gz",
"platform": null,
"description": "<p align=\"center\">\n <img width=\"125\" src=\"https://raw.githubusercontent.com/ariffjeff/houdini-package-manager/main/docs/static/hpm.svg\">\n</p style = \"margin-bottom: 2rem;\">\n\n<p align=\"center\">\n <img width=\"700\" src=\"https://raw.githubusercontent.com/ariffjeff/houdini-package-manager/main/docs/static/hpm_screenshot.png\">\n</p style = \"margin-bottom: 2rem;\">\n\n# Houdini Package Manager\n\n[![Release](https://img.shields.io/github/v/release/ariffjeff/houdini-package-manager)](https://img.shields.io/github/v/release/ariffjeff/houdini-package-manager)\n[![Build status](https://img.shields.io/github/actions/workflow/status/ariffjeff/houdini-package-manager/main.yml?branch=main)](https://github.com/ariffjeff/houdini-package-manager/actions/workflows/main.yml?query=branch%3Amain)\n[![codecov](https://codecov.io/gh/ariffjeff/houdini-package-manager/branch/main/graph/badge.svg)](https://codecov.io/gh/ariffjeff/houdini-package-manager)\n[![Commit activity](https://img.shields.io/github/commit-activity/m/ariffjeff/houdini-package-manager)](https://img.shields.io/github/commit-activity/m/ariffjeff/houdini-package-manager)\n[![License](https://img.shields.io/github/license/ariffjeff/houdini-package-manager)](https://img.shields.io/github/license/ariffjeff/houdini-package-manager)\n\nA comprehensive GUI package manager for Houdini. Manage all your plugins and create new packages with ease.\n\n- **Download the application**: <https://houpm.com>\n- **Github repository**: <https://github.com/ariffjeff/houdini-package-manager>\n- **PyPI repository**: <https://pypi.org/project/houdini-package-manager>\n\n\n## Install\n1. Download the latest version from https://houpm.com\n2. Unzip and store the folder anywhere you want.\n3. Create a shortcut of the Houdini_Package_Manager-x.y.z.exe file from the folder.\n4. Now you can run HPM from the shortcut, that's all there is to it!\n\n## Building the project yourself\nNote: This project was primarily tested with Python 3.9.10.\n\n1. Install the [Poetry dependency manager](https://python-poetry.org/docs/#installation).\n1. Clone the HPM project to a directory, open a terminal, and `cd` to it.\n1. Do `poetry install`\n1. Make your code changes and commit them.\n - If you're adding other files/images/vectors/etc., put them somewhere in `houdini_package_manager/resources/`\n1. Optional: Version bump the project\n 1. Version bump the project by doing `poetry version minor`. Use `major` or `patch` in place of `minor` if appropriate.\n - Both `pyproject.toml` and `__version__.py` will be updated automatically due to [poetry-bumpversion](https://pypi.org/project/poetry-bumpversion/) being installed in this project.\n 1. Commit the version bump. The commit message should be the version number (e.g. `1.3.2`)\n1. Do `make build-exe` to build the project. It will appear in `dist/`\n - The pytests are run automatically. Skip them with `make build-exe TEST=0`\n - `resources/` is copied over to the build folder automatically for you so you don't have to worry about it.\n - The build folder and .exe name is determined by the version number set by the result of `poetry version ...` (referenced in the Makefile)\n1. Do `make zip` to make a .zip of the build in `dist/`\n1. Run the build by going to `dist/`, finding the .exe, and running it there.\n - You can also run it by doing `make run-exe`, but be aware that this doesn't run it directly in the folder its in, which can lead to the issue of relative file paths not being able to find the files they're targetting if the paths have been set improperly... i.e. images failing to load. Make sure you set file paths with `utils.epath()` which automatically handles relative paths correctly for both the dev and build environment.\n1. If you get unexpected results (something isn't working right):\n 1. Remove `-w` from the `build-exe:` action in the `Makefile`\n 1. Do `make build-exe` again.\n 1. Run the .exe and you'll notice a terminal pops up along with the app. If any errors occur you'll be able to see them there.\n",
"bugtrack_url": null,
"license": "",
"summary": "GUI package manager for Houdini",
"version": "1.0.9",
"project_urls": {
"Documentation": "https://ariffjeff.github.io/houdini-package-manager/",
"Homepage": "https://github.com/ariffjeff/houdini-package-manager",
"Repository": "https://github.com/ariffjeff/houdini-package-manager"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "2459ef6f0d2907e27753c433b1b8707aca3e47d7590384e067db8fd1f6c1815d",
"md5": "a60e27aa9a612b8580b5c2b5673b2c98",
"sha256": "6bd2570c9e3ed227604e0a6173e6eb3b8875491955f77b916b36e42f141e911f"
},
"downloads": -1,
"filename": "houdini_package_manager-1.0.9-py3-none-any.whl",
"has_sig": false,
"md5_digest": "a60e27aa9a612b8580b5c2b5673b2c98",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8,<3.12",
"size": 3518359,
"upload_time": "2023-05-16T22:15:43",
"upload_time_iso_8601": "2023-05-16T22:15:43.834774Z",
"url": "https://files.pythonhosted.org/packages/24/59/ef6f0d2907e27753c433b1b8707aca3e47d7590384e067db8fd1f6c1815d/houdini_package_manager-1.0.9-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4213bf6e372ee52fd5d20ffd9c2148b14b1707414153d44cb7015a65e9d2d33c",
"md5": "d9b7c4b56d8a98ec614537560bd3306c",
"sha256": "3dff3c454e87e9402a4b4746df78a662925e1cdf7fd9847149f73ecf605b294a"
},
"downloads": -1,
"filename": "houdini_package_manager-1.0.9.tar.gz",
"has_sig": false,
"md5_digest": "d9b7c4b56d8a98ec614537560bd3306c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8,<3.12",
"size": 3482914,
"upload_time": "2023-05-16T22:15:47",
"upload_time_iso_8601": "2023-05-16T22:15:47.203536Z",
"url": "https://files.pythonhosted.org/packages/42/13/bf6e372ee52fd5d20ffd9c2148b14b1707414153d44cb7015a65e9d2d33c/houdini_package_manager-1.0.9.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-05-16 22:15:47",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ariffjeff",
"github_project": "houdini-package-manager",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "houdini-package-manager"
}