Skip to content

Commit

Permalink
fix deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chyroc committed Sep 26, 2024
1 parent a8582d3 commit 11cda10
Show file tree
Hide file tree
Showing 3 changed files with 417 additions and 408 deletions.
28 changes: 28 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## Setting up the environment

create a virtual environment:

```shell
python -m venv ./.venv
```

active the virtual environment:

```shell
source ./.venv/bin/activate
```

We use [Poetry](https://python-poetry.org/) to manage dependencies, you can install it by:

```shell
python -m pip install poetry
```

And then install dependencies:

```shell
poetry install
```

Run the code

## Pre Commit

```shell
Expand Down
Loading

0 comments on commit 11cda10

Please sign in to comment.