Skip to content

Commit

Permalink
Use poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasrichard committed Oct 10, 2024
1 parent 37284e1 commit 69866cc
Show file tree
Hide file tree
Showing 4 changed files with 191 additions and 2 deletions.
10 changes: 10 additions & 0 deletions amqp-compliance/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Setup environment

```
python3 -m venv .venv
source .venv/bin/activate
pip3 install pipx
pip3 install poetry
poetry install
```
167 changes: 167 additions & 0 deletions amqp-compliance/poetry.lock

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

14 changes: 14 additions & 0 deletions amqp-compliance/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
[tool.poetry]
name = "MetalMQ end to end tests"
description = "End to end test for MetalMQ server"
version = "0.3.0"
authors = ["Richard Jonas <[email protected]>"]
readme = "README.md"

package-mode = false

[tool.poetry.dependencies]
pika = "^1.3.0"
pytest = "^7.2.0"
python = "^3.7.0"

[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
Expand Down
2 changes: 0 additions & 2 deletions amqp-compliance/requirements.txt

This file was deleted.

0 comments on commit 69866cc

Please sign in to comment.