Skip to content

Commit ccd863e

Browse files
committed
change versioning and add prerequisites
1 parent acb16c4 commit ccd863e

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,24 @@ Zuffer is currently under active development. While many core features are funct
1313

1414
---
1515

16+
## Prerequisites
17+
18+
Before installing Zuffer CLI, please ensure you have the following system dependencies:
19+
20+
* **Python:** Version 3.8 or higher.
21+
* **pip:** Python package installer (usually comes with Python).
22+
* **FFmpeg (for music features):**
23+
* Zuffer's music bot functionality requires FFmpeg to be installed and accessible in your system's PATH.
24+
* **Linux (Debian/Ubuntu):** `sudo apt update && sudo apt install ffmpeg`
25+
* **Linux (Fedora):** `sudo dnf install ffmpeg`
26+
* **macOS (Homebrew):** `brew install ffmpeg`
27+
* **Windows:** Download FFmpeg from [the official FFmpeg website](https://ffmpeg.org/download.html) and add the `bin` directory to your system's PATH.
28+
* **Tkinter (for GUI elements):**
29+
* Tkinter is used for the graphical configuration tools (e.g., Welcomer GUI, Embed Builder).
30+
* **Windows & macOS:** Usually included with Python.
31+
* **Linux:** You might need to install it separately. For example, on Debian/Ubuntu: `sudo apt update && sudo apt install python3-tk`. On Fedora: `sudo dnf install python3-tkinter`.
32+
33+
1634
## Table of Contents
1735

1836
* [About](#about)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "zuffer"
7-
version = "0.1.0"
7+
version = "0.0.1"
88
authors = [
99
{ name="Md Muzaffar", email="[email protected]" },
1010
]

src/zuffer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.0.1"

0 commit comments

Comments
 (0)