Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ztatlock/2024-marktoberdorf-egglog

Mini egglog in Python
https://github.com/ztatlock/2024-marktoberdorf-egglog

Last synced: 3 months ago
JSON representation

Mini egglog in Python

Awesome Lists containing this project

README

        

# 2024-marktoberdorf-egglog

Mini egglog in Python

## Requirements

[Python 3.10](https://www.python.org/downloads/release/python-3100/) or later.

## Setup

To avoid affecting your regular Python environment, first set up a
[virtual environment](https://docs.python.org/3/library/venv.html).

```
$ python3 -m venv .venv
```

Now activate your new virtual environment.

```
$ source ./venv/bin/activate
```

Next install dependencies.

```
$ pip3 install -r requirements.txt
```

Finally run tests to make sure everything is working.

```
$ make test
```