├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── environment.yml ├── examples ├── knitpy_overview.pymd ├── small.md └── timeseries.md ├── setup.cfg ├── setup.py ├── stitch ├── __init__.py ├── __main__.py ├── _version.py ├── cli.py ├── exc.py ├── options.py ├── parser.py ├── static │ └── default.css └── stitch.py ├── tests ├── conftest.py ├── data │ └── small.md ├── test_options.py ├── test_parser.py └── test_stitcher.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | stitch/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/README.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/knitpy_overview.pymd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/examples/knitpy_overview.pymd -------------------------------------------------------------------------------- /examples/small.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/examples/small.md -------------------------------------------------------------------------------- /examples/timeseries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/examples/timeseries.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/setup.py -------------------------------------------------------------------------------- /stitch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/__init__.py -------------------------------------------------------------------------------- /stitch/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/__main__.py -------------------------------------------------------------------------------- /stitch/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/_version.py -------------------------------------------------------------------------------- /stitch/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/cli.py -------------------------------------------------------------------------------- /stitch/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/exc.py -------------------------------------------------------------------------------- /stitch/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/options.py -------------------------------------------------------------------------------- /stitch/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/parser.py -------------------------------------------------------------------------------- /stitch/static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/static/default.css -------------------------------------------------------------------------------- /stitch/stitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/stitch/stitch.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/small.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/tests/data/small.md -------------------------------------------------------------------------------- /tests/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/tests/test_options.py -------------------------------------------------------------------------------- /tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/tests/test_parser.py -------------------------------------------------------------------------------- /tests/test_stitcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/tests/test_stitcher.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pystitch/stitch/HEAD/versioneer.py --------------------------------------------------------------------------------