Metadata-Version: 2.4
Name: md-ssg
Version: 0.1
Summary: Create a static website from markdown files
Author: R.Keelan
License: Apache-2.0
Project-URL: Homepage, https://github.com/RKeelan/md-ssg
Project-URL: Changelog, https://github.com/RKeelan/md-ssg/releases
Project-URL: Issues, https://github.com/RKeelan/md-ssg/issues
Project-URL: CI, https://github.com/RKeelan/md-ssg/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: jinja2
Requires-Dist: markdown
Requires-Dist: toml
Provides-Extra: test
Requires-Dist: coverage[toml]>=7.5; extra == "test"
Requires-Dist: pytest>=8.0; extra == "test"
Requires-Dist: pytest-cov>=5.0; extra == "test"
Dynamic: license-file

# md-ssg

[![PyPI](https://img.shields.io/pypi/v/md-ssg.svg)](https://pypi.org/project/md-ssg/)
[![Changelog](https://img.shields.io/github/v/release/RKeelan/md-ssg?include_prereleases&label=changelog)](https://github.com/RKeelan/md-ssg/releases)
[![Tests](https://github.com/RKeelan/md-ssg/actions/workflows/test.yml/badge.svg)](https://github.com/RKeelan/md-ssg/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/RKeelan/md-ssg/blob/master/LICENSE)

Create a static website from markdown files

## Installation

Install this tool using `pip`:
```bash
pip install md-ssg
```
## Usage

For help, run:
```bash
md-ssg --help
```
You can also use:
```bash
python -m md_ssg --help
```
## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:
```bash
cd md-ssg
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
