Metadata-Version: 2.3
Name: segmock
Version: 0.1.2
Summary: 7-segment clock (segmock)
Project-URL: Homepage, https://github.com/sou-san/segmock
Project-URL: Repository, https://github.com/sou-san/segmock
Project-URL: Issues, https://github.com/sou-san/segmock/issues
Project-URL: Documentation, https://github.com/sou-san/segmock/blob/main/README.md
Author-email: sou-san <sou887867@gmail.com>
License: MIT License
        
        Copyright (c) 2024 Yusei Soma
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Keywords: 7segment,cli,clock,segmock,simple,stopwatch,terminal,tool,tui
Requires-Python: >=3.10
Requires-Dist: textual-pyfiglet>=0.5.5
Requires-Dist: textual>=0.88.1
Description-Content-Type: text/markdown

# 7 segment clock (segmock)

![segmock_screenshot](https://github.com/user-attachments/assets/79055e60-2c06-4c55-9104-13f45ea2b4d9)

A simple and large 7 segment Figlet font clock CLI app.
It can display the current time and measure with a stopwatch.
It can also be used in the Linux console.

## Usage
### Using uv
If you don't have uv installed, please install it.
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```
---
```bash
uv tool install segmock
```
```bash
segmock
```
or
```bash
uvx segmock
```

### Using pipx
If you don't have pipx installed, please install it.
```bash
sudo apt update && sudo apt install pipx
```
---
```bash
pipx install segmock
```
```bash
segmock
```
or
```bash
pipx run segmock
```
