Go to file
Midgard 4aa836adb0
Correct setup.py, add installation instructions
2021-01-01 17:14:09 +01:00
morseman Initial commit with morse synthesizer 2021-01-01 17:03:03 +01:00
tools Initial commit with morse synthesizer 2021-01-01 17:03:03 +01:00
.gitignore Initial commit with morse synthesizer 2021-01-01 17:03:03 +01:00
CHANGELOG.md Initial commit with morse synthesizer 2021-01-01 17:03:03 +01:00
LICENSE Initial commit with morse synthesizer 2021-01-01 17:03:03 +01:00
README.md Correct setup.py, add installation instructions 2021-01-01 17:14:09 +01:00
requirements.txt Initial commit with morse synthesizer 2021-01-01 17:03:03 +01:00
setup.py Correct setup.py, add installation instructions 2021-01-01 17:14:09 +01:00

README.md

morseman

Install with pip:

pip install --user .

To run (assuming Pip installs to a location in your PATH):

morseman

Development

To create a virtualenv and install the dependencies in it:

tools/create_venv.sh

Activate the virtualenv with source venv/bin/activate. To make this easier, you could create an alias alias venv='source venv/bin/activate' in your shell.

If you introduce dependencies, list them in setup.py under install_requires, and run tools/update_requirements.sh.