Metadata-Version: 2.1
Name: til-cli
Version: 0.1.2
Summary: Keep track of things you learn each day
Author: Kamyar Ghasemlou
Author-email: github@kamy.me
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: ruamel.yaml (>=0.17.4,<0.18.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Description-Content-Type: text/markdown

## Setup:
#### Install Python 3.x
Requires Python >= 3.9.

If you do not have it yet, consider installing it either with brew or using a tool like [pyenv](https://github.com/pyenv/pyenv)

##### Macos
```bash
$ brew install python@3.9
```

#####
Visit [Python.org](https://www.python.org/downloads/)

#### Install poetry
```bash
$ brew install poetry

```
or (Sugge)

```bash
$ pip3 install poetry
```

#### Create Env
```bash
$ poetry env use python3.9          # Setup env
$ poetry shell                      # Drop into Poetry env
$ poetry install                    # Install from pyproject.toml
```


