Skip to the content.

Generate Python Project

gen_py_pro is shell tool for generating Python project.

Developed in bash code: 100%.

gen_py_pro_shell_checker

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.

GitHub issues open GitHub contributors

Table of Contents

Installation

Debian Linux OS

Navigate to release page download and extract release archive.

To install gen_py_pro type the following

tar xvzf gen_py_pro-x.y.tar.gz
cd gen_py_pro-x.y
cp -R ~/sh_tool/bin/   /root/scripts/gen_py_pro/ver.x.y/
cp -R ~/sh_tool/conf/  /root/scripts/gen_py_pro/ver.x.y/
cp -R ~/sh_tool/log/   /root/scripts/gen_py_pro/ver.x.y/

Self generated setup script and execution

./gen_py_pro_setup.sh

[setup] installing App/Tool/Script gen_py_pro
	Sat 04 Dec 2021 09:02:07 AM CET
[setup] copy App/Tool/Script structure
[setup] remove github editor configuration files
[setup] set App/Tool/Script permission
[setup] create symbolic link of App/Tool/Script
[setup] done

/root/scripts/gen_py_pro/ver.2.0/
├── bin/
│   ├── center.sh
│   ├── display_logo.sh
│   └── gen_py_pro.sh
├── conf/
│   ├── gen_py_pro.cfg
│   ├── gen_py_pro.logo
│   ├── gen_py_pro_util.cfg
│   ├── project_set.cfg
│   └── template/
│       ├── authors.template
│       ├── autogen.template
│       ├── changelog.template
│       ├── configure_ac.template
│       ├── copying.template
│       ├── makefile_am_root.template
│       ├── makefile_am_src.template
│       ├── news.template
│       ├── py_editorconfig.template
│       ├── py.template
│       └── readme.template
└── log/
    └── gen_py_pro.log

4 directories, 19 files
lrwxrwxrwx 1 root root 50 Dec  4 09:02 /root/bin/gen_py_pro -> /root/scripts/gen_py_pro/ver.2.0/bin/gen_py_pro.sh

Or You can use docker to create image/container.

Usage

# Create symlink for shell tool
ln -s /root/scripts/gen_py_pro/ver.x.y/bin/gen_py_pro.sh /root/bin/gen_py_pro

# Setting PATH
export PATH=${PATH}:/root/bin/

# Generating Python project
gen_py_pro RCP

gen_py_pro ver.2.0
Sat 04 Dec 2021 09:05:39 AM CET

[check_root] Check permission for current session? [ok]
[check_root] Done

                                                                                  
                                                                                  
    █████   █████  ███████        ██████   ██   ██       ██████  ██████  ██████   
   ██░░░██ ██░░░██░░██░░░██      ░██░░░██ ░░██ ██       ░██░░░██░░██░░█ ██░░░░██  
  ░██  ░██░███████ ░██  ░██      ░██  ░██  ░░███        ░██  ░██ ░██ ░ ░██   ░██  
  ░░██████░██░░░░  ░██  ░██      ░██████    ░██         ░██████  ░██   ░██   ░██  
   ░░░░░██░░██████ ███  ░██ █████░██░░░     ██     █████░██░░░  ░███   ░░██████   
    █████  ░░░░░░ ░░░   ░░ ░░░░░ ░██       ██     ░░░░░ ░██     ░░░     ░░░░░░    
   ░░░░░                         ░░       ░░            ░░                        
                                                                                   
	                                                  
		Info   github.io/gen_py_pro ver.2.0 
		Issue  github.io/issue
		Author vroncevic.github.io

[gen_py_pro] Loading basic and util configuration!
100% [================================================]

[load_conf] Loading App/Tool/Script configuration!
[check_cfg] Checking configuration file [/root/scripts/gen_py_pro/ver.2.0/conf/gen_py_pro.cfg] [ok]
[check_cfg] Done

[load_conf] Done

[load_util_conf] Load module configuration!
[check_cfg] Checking configuration file [/root/scripts/gen_py_pro/ver.2.0/conf/gen_py_pro_util.cfg] [ok]
[check_cfg] Done

[load_util_conf] Done

[gen_py_pro] Generating project structure!
[gen_py_pro] Generating directory [RCP/]
[gen_py_pro] Generating directory [RCP/src/]
[load_util_conf] Load module configuration!
[check_cfg] Checking configuration file [/root/scripts/gen_py_pro/ver.2.0/conf/project_set.cfg] [ok]
[check_cfg] Done

[load_util_conf] Done

[gen_py_pro] Generating file [RCP/autogen.sh]
[gen_py_pro] Generating file [RCP/configure.ac]
[gen_py_pro] Generating file [RCP/Makefile.am]
[gen_py_pro] Generating file [RCP/src/Makefile.am]
[gen_py_pro] Generating file [RCP/src/RCP.py]
[gen_py_pro] Generating file [RCP/src/.editorconfig]
[gen_py_pro] Generating file [RCP/ChangeLog]
[gen_py_pro] Generating file [RCP/COPYING]
[gen_py_pro] Generating file [RCP/AUTHORS]
[gen_py_pro] Generating file [RCP/NEWS]
[gen_py_pro] Generating file [RCP/README]
[gen_py_pro] Set owner!
[gen_py_pro] Set permission!
[logging] Checking directory [/root/scripts/gen_py_pro/ver.2.0/log/]? [ok]
[logging] Write info log!
[logging] Done

[gen_py_pro] Done
[check_tool] Checking tool [/usr/bin/tree]? [ok]
[check_tool] Done

RCP/
├── AUTHORS
├── autogen.sh
├── ChangeLog
├── configure.ac
├── COPYING
├── Makefile.am
├── NEWS
├── README
└── src
    ├── Makefile.am
    └── RCP.py

1 directory, 10 files

Dependencies

gen_py_pro requires next modules and libraries

Shell tool structure

gen_py_pro is based on MOP.

Shell tool structure

sh_tool/
├── bin/
│   ├── center.sh
│   ├── display_logo.sh
│   └── gen_py_pro.sh
├── conf/
│   ├── gen_py_pro.cfg
│   ├── gen_py_pro.logo
│   ├── gen_py_pro_util.cfg
│   ├── project_set.cfg
│   └── template/
│       ├── authors.template
│       ├── autogen.template
│       ├── changelog.template
│       ├── configure_ac.template
│       ├── copying.template
│       ├── makefile_am_root.template
│       ├── makefile_am_src.template
│       ├── news.template
│       ├── py_editorconfig.template
│       ├── py.template
│       └── readme.template
└── log/
    └── gen_py_pro.log

Docs

Documentation Status

More documentation and info at

License: GPL v3 License

Copyright (C) 2017 - 2024 by vroncevic.github.io/gen_py_pro

gen_py_pro is free software; you can redistribute it and/or modify it under the same terms as Bash itself, either Bash version 4.2.47 or, at your option, any later version of Bash 4 you may have available.

Lets help and support FSF.

Free Software Foundation

Donate