Metadata-Version: 2.1
Name: skelgen
Version: 1.2.0
Summary: UNKNOWN
Home-page: https://gitlab.com/bbworld1/skel
Author: Vincent Wang
Author-email: vwangsf@gmail.com
License: MIT
Download-URL: https://gitlab.com/bbworld1/skel
Keywords: generator,skeleton,template,tool
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Build Tools
Description-Content-Type: text/markdown
License-File: LICENSE

# skel

A quick skeleton generator for projects.

Fun fact: this project was generated using skel's `python-cli` template.

## Installation

### From Pip

Run `pip3 install skelgen`.

### From Source

Clone this repo.

Run `python3 setup.py install` to install globally.
Run `python3 setup.py install --user` to install for one user.


## Usage
Run `skel --help` for help.

Example usage:
Run `skel python-cli --path test` to generate a Python CLI application
in the `test` directory.

## Features

Available templates:
- `python`, a basic Python package structure
- `python-cli`, like `python`, but includes logic for installing as a command line application
- `cmake`, a basic C++ CMake project structure
- `zephyr`, a basic Zephyr RTOS C application template
- `flask-api`, a Flask CRUD API template with authentication based on SQLAlchemy

Available "shortcut" templates (which just call a separate scaffolder):
- `react`
- `preact`
- `vue`
- `nuxt`

Planned templates:
- `flask`, a basic Flask template with GUI
- `pyside-gui`, a deployable PySide6 application with PyInstaller
- `pyuavcan`, a basic PyUAVCAN based application
- `caspar-graphics`, a basic CasparCG HTML templates project

## Contributing

Got an idea for a template? Put in a merge request!
It's very easy to create a custom project template.
All file/folder names and contents are templated using
the Jinja2 template engine. All you need to do is write the templates,
add a ___template.py for configuration (see the Python template for
examples), and rebuild!

We also appreciate feature requests and bug reports.


