Generate shared file modules¶
gen_shared_file is toolset for generation of shared file skeleton for development embedded applications.
Developed in python code.
The README is used to introduce the tool modules and provide instructions on how to install the tool modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.
Installation¶
Navigate to release page download and extract release archive.
To install gen_shared_file type the following
tar xvzf gen_shared_file-x.y.z.tar.gz
cd gen_shared_file-x.y.z/
#python3
python3 setup.py install_lib
python3 setup.py install_data
python3 setup.py install_egg_info
You can use Docker to create image/container, or You can use pip to install
#python3
pip3 install gen-shared-file
Dependencies¶
gen_shared_file tool-module requires other modules and libraries
Tool structure¶
gen_shared_file is based on Template mechanism
Generator structure
gen_shared_file/
├── conf/
│ ├── gen_shared_file.logo
│ ├── gen_shared_file.cfg
│ ├── gen_shared_file_util.cfg
│ ├── project.yaml
│ └── template/
│ ├── shared_file.template
│ ├── shared_file_lock.template
│ ├── shared_file_unlock.template
│ ├── write_shared_file.template
│ └── read_shared_file.template
├── __init__.py
├── log/
│ └── gen_shared_file.log
├── pro/
│ ├── __init__.py
│ ├── read_template.py
│ └── write_template.py
└── run/
└── gen_shared_file_run.py
Copyright and licence¶
Copyright (C) 2019 - 2024 by vroncevic.github.io/gen_shared_file
gen_shared_file 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.