Metadata-Version: 2.1
Name: systemd_service_generator
Version: 1.0.0
Summary: A tool to generate systemd service files from a configuration file.
Home-page: https://github.com/kqiq/systemd_service_generator
Author: kqiq
Author-email: kqiqerl@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

   # systemd_service_generator

   A tool to generate systemd service files from a configuration file.

   ## Installation

   ```bash
   pip install systemd_service_generator
   ```

   ## Usage

   ```bash
   sdg path/to/config.json
   ```

   ## Configuration File

   The configuration file should be a JSON file with the following structure:

   ```json
   {
       "service_name": "your_service_name",
       "description": "Your service description",
       "exec_start": "/path/to/your/executable",
       "user": "optional_user",
       "workingDirectory": "/path/to/working/directory"
   }
   ```
