Skip to content

Commit

Permalink
Merge pull request #35 from Itz-Agasta/dist
Browse files Browse the repository at this point in the history
Prepare package for PyPI publication
  • Loading branch information
Itz-Agasta authored Feb 24, 2025
2 parents 096af12 + 6b9d518 commit e602cf9
Show file tree
Hide file tree
Showing 5 changed files with 184 additions and 112 deletions.
10 changes: 10 additions & 0 deletions CONTACT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Contact Us

Got a question? We're here to help.

For technical problems or troubleshooting, reach out to our Support Team at [email protected].

You can also find us on the following platforms:

[Discord](https://discord.gg/EmmFRZXMSK)
[GitHub](https://github.com/Itz-Agasta/ethos)
27 changes: 19 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

<div align="center">

[![Python Version](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![Python Version](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
[![PyPI version](https://badge.fury.io/py/ethos-cli.svg)](https://pypi.org/project/ethos-cli/)
[![Downloads](https://img.shields.io/pypi/dm/ethos-cli.svg)](https://pypi.org/project/ethos-cli/)
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/Itz-Agasta/ethos/pulls)
[![Code Coverage](https://img.shields.io/codecov/c/github/Itz-Agasta/ethos)](https://codecov.io/gh/Itz-Agasta/ethos)
[![Downloads](https://img.shields.io/pypi/dm/ethos)](https://pypi.org/project/ethos/)
[![GitHub Issues](https://img.shields.io/github/issues/Itz-Agasta/ethos)](https://github.com/Itz-Agasta/ethos/issues)
[![GitHub Stars](https://img.shields.io/github/stars/Itz-Agasta/ethos)](https://github.com/Itz-Agasta/ethos/stargazers)
[![Last Commit](https://img.shields.io/github/last-commit/Itz-Agasta/ethos)](https://github.com/Itz-Agasta/ethos/commits/main)
Expand All @@ -23,6 +23,8 @@
<br />
<a href="https://www.youtube.com/watch?v=E1AjSHxe5NU&feature=youtu.be">View Demo</a>
·
<a href="https://vyse-1.gitbook.io/ethos/">Documentation</a>
.
<a href="https://github.com/Itz-Agasta/ethos/issues">Report Bug</a>
·
<a href="https://github.com/Itz-Agasta/ethos/issues">Request Feature</a>
Expand Down Expand Up @@ -95,16 +97,23 @@

Make sure you have the following installed:

- Python 3.8 or later
- pip (Python package installer)
- Python 3.9 or later
- pipx (Recommended) or pip
- VLC media player

For detailed system-specific requirements and setup instructions, please refer to our [official documentation](https://vyse-1.gitbook.io/ethos/).

## Quick Start

```bash
# Install Ethos
pip install ethos
# Install using pipx (recommended)
pipx install ethos-cli

# Or using pip
pip install ethos-cli
```

```bash
# Start playing music
ethos
```
Expand All @@ -114,10 +123,12 @@ ethos
### For Development:

1. **Clone the Repository:**

```bash
git clone https://github.com//Itz-Agasta/ethos.git
cd ethos
```

2. **Install Poetry:**

```bash
Expand Down Expand Up @@ -145,7 +156,7 @@ ethos

### For Distribution:

Coming Soon
Visit the [Official Ethos Documentation](https://vyse-1.gitbook.io/ethos/) for detailed installation instructions based on your system.

## Usage:

Expand Down
7 changes: 5 additions & 2 deletions ethos/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@

import os
import sys

from ethos.ui import ui

if __name__ == "__main__":
def main():
"""Main entry point for the Ethos music player."""
ethos_ui = ui.UI()
ethos_ui.draw_ui()

if __name__ == "__main__":
sys.exit(main())
162 changes: 94 additions & 68 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e602cf9

Please sign in to comment.