Generate setup.py

dist_py_module is toolset for generation of setup.py.

Developed in python code.

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

python package checker python checker documentation status github issues github contributors

Installation

build python3 package

Navigate to release page download and extract release archive.

To install dist_py_module type the following

tar xvzf dist_py_module-x.y.z.tar.gz
cd dist_py_module-x.y.z/
# pyton3
pip3 install -r requirements.txt
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

# pyton3
pip3 install dist-py-module

Dependencies

dist_py_module requires next modules and libraries

Tool structure

dist_py_module is based on OOP.

Code structure

dist_py_module/
├── conf/
│   ├── dist_py_module.cfg
│   ├── dist_py_module.logo
│   ├── dist_py_module_util.cfg
│   ├── project.yaml
│   └── template/
│       ├── MANIFEST.template
│       ├── pyproject.template
│       ├── setup_package.template
│       ├── setup.template
│       └── setup_tool.template
├── __init__.py
├── log/
│   └── dist_py_module.log
├── pro/
│   ├── __init__.py
│   ├── read_template.py
│   └── write_template.py
└── run/
    └── dist_py_module_run.py

Indices and tables