NJDFan
NJDFan
Documentation on how to use the command line commands is pretty buried. Back when I used AutoCAD regularly, I got pretty used to typing commands and modifiers while mousing for...
The main executable bin/rst2ansi starts with `#!/usr/bin/python` which aliases python2 (PEP 394). Should be `#!/usr/bin/python3` or even better `#!/usr/bin/env python3`
I took advantage of the setuptools _entry_points_ functionality to make the installer install correctly on both python2 and python3. This also took adding `from __future__ import print_function` to fully support...