Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 546 Bytes

README.md

File metadata and controls

44 lines (27 loc) · 546 Bytes

word-search

Requirements

  • Python >= 3.6.10

Prepare environment

  1. Clone the project and move to its directory.
$ git clone git@github.com:opavlyuk/word-search.git
$ cd word-search

  1. Make python3 virtualenv and activate it:
$ python3 -m venv venv && source venv/bin/activate

  1. Install app:
$ pip install -e .

Run

Execute the command-line script, check help for details:

(venv) $ word-search --help

Test

Execute unit tests:

(venv) $ python -m unittest discover src/tests/