gen-gtkmm


Namegen-gtkmm JSON
Version 1.1.2 PyPI version JSON
download
home_pagehttps://electux.github.io/gen_gtkmm/
SummaryGTK-- project skeleton generator
upload_time2023-12-29 22:20:35
maintainer
docs_urlNone
authorVladimir Roncevic
requires_python>=3.10
licenseGPL 2024 Free software to use and distributed it.
keywords gtk-- project c++ gtk unix linux
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <img align="right" src="https://raw.githubusercontent.com/electux/gen_gtkmm/dev/docs/gen_gtkmm_logo.png" width="25%">

# GTK-- project skeleton generator

**gen_gtkmm** is toolset for generation GTK-- project skeleton for
developmet of desktop and embedded applications.

Developed in **[python](https://www.python.org/)** code: **100%**.

The README is used to introduce the modules and provide instructions on
how to install the modules, any machine dependencies it may have and any
other information that should be provided before the modules are installed.

[![gen_gtkmm python checker](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python_checker.yml/badge.svg)](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python_checker.yml) [![gen_gtkmm package checker](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_package_checker.yml/badge.svg)](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/electux/gen_gtkmm.svg)](https://github.com/electux/gen_gtkmm/issues) [![GitHub contributors](https://img.shields.io/github/contributors/electux/gen_gtkmm.svg)](https://github.com/electux/gen_gtkmm/graphs/contributors)

<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**

- [Installation](#installation)
    - [Install using pip](#install-using-pip)
    - [Install using setuptools](#install-using-setuptools)
    - [Install using docker](#install-using-docker)
- [Dependencies](#dependencies)
- [Tool structure](#tool-structure)
- [Docs](#docs)
- [Copyright and licence](#copyright-and-licence)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

### Installation

![debian linux os](https://raw.githubusercontent.com/electux/gen_gtkmm/dev/docs/debtux.png)

[![gen_gtkmm python3 build](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python3_build.yml/badge.svg)](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python3_build.yml)

Currently there are three ways to install package
* Install process based on using pip mechanism
* Install process based on build mechanism
* Install process based on setup.py mechanism
* Install process based on docker mechanism

##### Install using pip

Python package is located at **[pypi.org](https://pypi.org/project/gen_gtkmm/)**.

You can install by using pip
```
#python3
pip3 install gen_gtkmm
```

##### Install using build

Navigate to release **[page](https://github.com/electux/gen_gtkmm/releases/)** download and extract release archive.

To install **gen_gtkmm** type the following

```bash
tar xvzf gen_gtkmm-x.y.z.tar.gz
cd gen_gtkmm-x.y.z/
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py 
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install ./dist/gen_gtkmm-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_gtkmm_run.py
ln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_gtkmm_run.py /usr/local/bin/gen_gtkmm_run.py
```

##### Install using py setup

Navigate to **[release page](https://github.com/electux/gen_gtkmm/releases)** download and extract release archive.

To install modules, locate and run setup.py, type the following
```
tar xvzf gen_gtkmm-x.y.z.tar.gz
cd gen_gtkmm-x.y.z
#python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_egg_info
python3 setup.py install_data
```

##### Install using docker

You can use Dockerfile to create image/container.

### Dependencies

**gen_gtkmm** requires next modules and libraries

* [ats-utilities - Python App/Tool/Script Utilities](https://electux.github.io/ats_utilities)

### Tool structure

**gen_gtkmm** is based on OOP

Generator structure

```bash
    gen_gtkmm/
        ├── conf/
        │   ├── gen_gtkmm.cfg
        │   ├── gen_gtkmm.logo
        │   ├── gen_gtkmm_util.cfg
        │   ├── project.yaml
        │   └── template/
        │       ├── ccflags.template
        │       ├── header_module.template
        │       ├── ldflags.template
        │       ├── main_module.template
        │       ├── Makefile.template
        │       ├── objects.template
        │       ├── source_module.template
        │       └── sources.template
        ├── __init__.py
        ├── log/
        │   └── gen_gtkmm.log
        ├── pro/
        │   ├── __init__.py
        │   ├── read_template.py
        │   └── write_template.py
        └── run/
            └── gen_gtkmm_run.py
        
        6 directories, 18 files
```

### Docs

[![Documentation Status](https://readthedocs.org/projects/gen-esp/badge/?version=latest)](https://gen-esp.readthedocs.io/en/latest/?badge=latest)

More documentation and info at

* [gen_gtkmm.readthedocs.io](https://gen-gtkmm.readthedocs.io)
* [www.python.org](https://www.python.org/)
* [www.gtkmm.org](https://www.gtkmm.org/en/)

### Copyright and licence

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

Copyright (C) 2021 - 2024 by [electux.github.io/gen_gtkmm](https://electux.github.io/gen_gtkmm/)

This tool is free software; you can redistribute it and/or modify
it under the same terms as Python itself, either Python version 3.x or,
at your option, any later version of Python 3 you may have available.

Lets help and support PSF.

[![Python Software Foundation](https://raw.githubusercontent.com/electux/gen_gtkmm/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)

[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)

            

Raw data

            {
    "_id": null,
    "home_page": "https://electux.github.io/gen_gtkmm/",
    "name": "gen-gtkmm",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "GTK--,Project,C++,Gtk,Unix,Linux",
    "author": "Vladimir Roncevic",
    "author_email": "elektron.ronca@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a3/cc/09c58352b6855e5996782ee15defd4c57c7348ec6a525e1a96afdae2a9cd/gen_gtkmm-1.1.2.tar.gz",
    "platform": "POSIX",
    "description": "<img align=\"right\" src=\"https://raw.githubusercontent.com/electux/gen_gtkmm/dev/docs/gen_gtkmm_logo.png\" width=\"25%\">\n\n# GTK-- project skeleton generator\n\n**gen_gtkmm** is toolset for generation GTK-- project skeleton for\ndevelopmet of desktop and embedded applications.\n\nDeveloped in **[python](https://www.python.org/)** code: **100%**.\n\nThe README is used to introduce the modules and provide instructions on\nhow to install the modules, any machine dependencies it may have and any\nother information that should be provided before the modules are installed.\n\n[![gen_gtkmm python checker](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python_checker.yml/badge.svg)](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python_checker.yml) [![gen_gtkmm package checker](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_package_checker.yml/badge.svg)](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/electux/gen_gtkmm.svg)](https://github.com/electux/gen_gtkmm/issues) [![GitHub contributors](https://img.shields.io/github/contributors/electux/gen_gtkmm.svg)](https://github.com/electux/gen_gtkmm/graphs/contributors)\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n**Table of Contents**\n\n- [Installation](#installation)\n    - [Install using pip](#install-using-pip)\n    - [Install using setuptools](#install-using-setuptools)\n    - [Install using docker](#install-using-docker)\n- [Dependencies](#dependencies)\n- [Tool structure](#tool-structure)\n- [Docs](#docs)\n- [Copyright and licence](#copyright-and-licence)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n### Installation\n\n![debian linux os](https://raw.githubusercontent.com/electux/gen_gtkmm/dev/docs/debtux.png)\n\n[![gen_gtkmm python3 build](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python3_build.yml/badge.svg)](https://github.com/electux/gen_gtkmm/actions/workflows/gen_gtkmm_python3_build.yml)\n\nCurrently there are three ways to install package\n* Install process based on using pip mechanism\n* Install process based on build mechanism\n* Install process based on setup.py mechanism\n* Install process based on docker mechanism\n\n##### Install using pip\n\nPython package is located at **[pypi.org](https://pypi.org/project/gen_gtkmm/)**.\n\nYou can install by using pip\n```\n#python3\npip3 install gen_gtkmm\n```\n\n##### Install using build\n\nNavigate to release **[page](https://github.com/electux/gen_gtkmm/releases/)** download and extract release archive.\n\nTo install **gen_gtkmm** type the following\n\n```bash\ntar xvzf gen_gtkmm-x.y.z.tar.gz\ncd gen_gtkmm-x.y.z/\n# python3\nwget https://bootstrap.pypa.io/get-pip.py\npython3 get-pip.py \npython3 -m pip install --upgrade setuptools\npython3 -m pip install --upgrade pip\npython3 -m pip install --upgrade build\npip3 install -r requirements.txt\npython3 -m build --no-isolation --wheel\npip3 install ./dist/gen_gtkmm-*-py3-none-any.whl\nrm -f get-pip.py\nchmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_gtkmm_run.py\nln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_gtkmm_run.py /usr/local/bin/gen_gtkmm_run.py\n```\n\n##### Install using py setup\n\nNavigate to **[release page](https://github.com/electux/gen_gtkmm/releases)** download and extract release archive.\n\nTo install modules, locate and run setup.py, type the following\n```\ntar xvzf gen_gtkmm-x.y.z.tar.gz\ncd gen_gtkmm-x.y.z\n#python3\npip3 install -r requirements.txt\npython3 setup.py install_lib\npython3 setup.py install_egg_info\npython3 setup.py install_data\n```\n\n##### Install using docker\n\nYou can use Dockerfile to create image/container.\n\n### Dependencies\n\n**gen_gtkmm** requires next modules and libraries\n\n* [ats-utilities - Python App/Tool/Script Utilities](https://electux.github.io/ats_utilities)\n\n### Tool structure\n\n**gen_gtkmm** is based on OOP\n\nGenerator structure\n\n```bash\n    gen_gtkmm/\n        \u251c\u2500\u2500 conf/\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_gtkmm.cfg\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_gtkmm.logo\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 gen_gtkmm_util.cfg\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 project.yaml\n        \u2502\u00a0\u00a0 \u2514\u2500\u2500 template/\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 ccflags.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 header_module.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 ldflags.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 main_module.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 Makefile.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 objects.template\n        \u2502\u00a0\u00a0     \u251c\u2500\u2500 source_module.template\n        \u2502\u00a0\u00a0     \u2514\u2500\u2500 sources.template\n        \u251c\u2500\u2500 __init__.py\n        \u251c\u2500\u2500 log/\n        \u2502\u00a0\u00a0 \u2514\u2500\u2500 gen_gtkmm.log\n        \u251c\u2500\u2500 pro/\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n        \u2502\u00a0\u00a0 \u251c\u2500\u2500 read_template.py\n        \u2502\u00a0\u00a0 \u2514\u2500\u2500 write_template.py\n        \u2514\u2500\u2500 run/\n            \u2514\u2500\u2500 gen_gtkmm_run.py\n        \n        6 directories, 18 files\n```\n\n### Docs\n\n[![Documentation Status](https://readthedocs.org/projects/gen-esp/badge/?version=latest)](https://gen-esp.readthedocs.io/en/latest/?badge=latest)\n\nMore documentation and info at\n\n* [gen_gtkmm.readthedocs.io](https://gen-gtkmm.readthedocs.io)\n* [www.python.org](https://www.python.org/)\n* [www.gtkmm.org](https://www.gtkmm.org/en/)\n\n### Copyright and licence\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\nCopyright (C) 2021 - 2024 by [electux.github.io/gen_gtkmm](https://electux.github.io/gen_gtkmm/)\n\nThis tool is free software; you can redistribute it and/or modify\nit under the same terms as Python itself, either Python version 3.x or,\nat your option, any later version of Python 3 you may have available.\n\nLets help and support PSF.\n\n[![Python Software Foundation](https://raw.githubusercontent.com/electux/gen_gtkmm/dev/docs/psf-logo-alpha.png)](https://www.python.org/psf/)\n\n[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.python.org/psf/donations/)\n",
    "bugtrack_url": null,
    "license": "GPL 2024 Free software to use and distributed it.",
    "summary": "GTK-- project skeleton generator",
    "version": "1.1.2",
    "project_urls": {
        "Homepage": "https://electux.github.io/gen_gtkmm/"
    },
    "split_keywords": [
        "gtk--",
        "project",
        "c++",
        "gtk",
        "unix",
        "linux"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b553bf02bbc16399bb4a6a5d5fb26d8a8f61d74926717b02c35934f3b9427ac",
                "md5": "aa4d8f68b6d1fcc59486cb35c3b51a42",
                "sha256": "adca7bb33c30907e1027dbd17bf93e1bd10d123416c09115d68c244e777931cc"
            },
            "downloads": -1,
            "filename": "gen_gtkmm-1.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "aa4d8f68b6d1fcc59486cb35c3b51a42",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 31265,
            "upload_time": "2023-12-29T22:20:34",
            "upload_time_iso_8601": "2023-12-29T22:20:34.117295Z",
            "url": "https://files.pythonhosted.org/packages/2b/55/3bf02bbc16399bb4a6a5d5fb26d8a8f61d74926717b02c35934f3b9427ac/gen_gtkmm-1.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3cc09c58352b6855e5996782ee15defd4c57c7348ec6a525e1a96afdae2a9cd",
                "md5": "e5fda01e19409ad89b9c98114bfaaf8e",
                "sha256": "6326d96aa360ed9c4a3cce502046a4eeae92f8234188d859eef4f56bbf854d08"
            },
            "downloads": -1,
            "filename": "gen_gtkmm-1.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "e5fda01e19409ad89b9c98114bfaaf8e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 25458,
            "upload_time": "2023-12-29T22:20:35",
            "upload_time_iso_8601": "2023-12-29T22:20:35.818361Z",
            "url": "https://files.pythonhosted.org/packages/a3/cc/09c58352b6855e5996782ee15defd4c57c7348ec6a525e1a96afdae2a9cd/gen_gtkmm-1.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-29 22:20:35",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gen-gtkmm"
}
        
Elapsed time: 0.15855s