Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! (wip) Resolving 3.11 Build Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeitz committed Mar 16, 2024
1 parent cc5d6f8 commit 4cc7366
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 9 deletions.
31 changes: 25 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,45 @@ A Configurable and Context Driven Project 1999 Log Parser with NCurses Interface

#### PyPI
```sh
$ pip3 install eqalert
$ # or if your distribution is using externally managed environemnts
# Download
$ pipx install eqalert

# Start eqalert
$ eqalert
```

#### Locally
```sh
# Clone the repository
$ git clone https://github.com/mgeitz/eqalert.git
$ cd eqalert
$ python3 -m pip install -e .
$ # or if your distribution is using externally managed environments
$ # (remember the venv must be sourced to run eqalert when installed this way)
$ python3 -m venv .venv; source .venv/bin/activate; python3 -m pip install -e .

# Install poetry
$ pipx install poetry

# Install playsound
$ poetry run pip install --upgrade pip
$ poetry run pip install --upgrade wheel
$ poetry run pip install playsound

# Retrieve dependencies and build
$ poetry install
$ poetry build

# Start eqalert
$ poetry run eqalert
```

#### Docker
```sh
# Clone the repository
$ git clone https://github.com/mgeitz/eqalert.git
$ cd eqalert

# Build
$ docker compose build

# Start eqalert
$ docker compose run eqalert
```

Expand Down
33 changes: 31 additions & 2 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.11.2"
python = ">=3.9.2"
playsound = "~1.3.0"
gtts = "~2.3.2"

Expand Down

0 comments on commit 4cc7366

Please sign in to comment.