├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── benchmarks ├── __init__.py ├── bench_main.py └── run.py ├── doc ├── .gitignore ├── Makefile ├── _static │ └── custom.css ├── _templates │ └── links.html ├── changelog.rst ├── command_evaluation.rst ├── command_functions.rst ├── conf.py ├── index.rst ├── installation.rst ├── license.rst ├── misc.rst ├── out_there.rst ├── overview.rst ├── reference.rst ├── tests.rst ├── tutorial.rst └── versioning.rst ├── revl.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── run.py └── test_main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/README.rst -------------------------------------------------------------------------------- /benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmarks/bench_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/benchmarks/bench_main.py -------------------------------------------------------------------------------- /benchmarks/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/benchmarks/run.py -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/_static/custom.css -------------------------------------------------------------------------------- /doc/_templates/links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/_templates/links.html -------------------------------------------------------------------------------- /doc/changelog.rst: -------------------------------------------------------------------------------- 1 | .. _changelog: 2 | 3 | .. include:: ../CHANGELOG.rst 4 | -------------------------------------------------------------------------------- /doc/command_evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/command_evaluation.rst -------------------------------------------------------------------------------- /doc/command_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/command_functions.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/license.rst -------------------------------------------------------------------------------- /doc/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/misc.rst -------------------------------------------------------------------------------- /doc/out_there.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/out_there.rst -------------------------------------------------------------------------------- /doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/overview.rst -------------------------------------------------------------------------------- /doc/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/reference.rst -------------------------------------------------------------------------------- /doc/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/tests.rst -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /doc/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/doc/versioning.rst -------------------------------------------------------------------------------- /revl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/revl.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/tests/run.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophercrouzet/revl/HEAD/tests/test_main.py --------------------------------------------------------------------------------