Skip to content

geowurster/pyin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyin

Like sed, but Python! A personal project.

See docs.rst.

Documentation is built with docutils, which is much lighter than Sphinx, but also has far fewer directives. It does support rendering a single reStructuredText file as a single HTMl file though. The project provides a helpful cheatsheet.

$ python3 -m pip install git+https://github.com/geowurster/pyin
# Set up workspace
$ git clone https://github.com/geowurster/pyin
$ cd pyin
$ python3 -m venv venv
$ source venv/bin/activate

# Upgrade packaging tools
$ (venv) pip install pip setuptools --upgrade

# Dev and test dependencies
$ (venv) pip install -r requirements-dev.txt -e ".[test]"

# Run tests
$ (venv) pytest --cov pyin --cov-report term-missing --cov-fail-under 100

# Optionally, 'tox' can be used to test on multiple Python versions
$ (venv) tox