├── .gitignore ├── .travis.yml ├── README.md ├── fabfile.py ├── figures ├── python_weekly.png └── tetration_example.png ├── hyperop ├── __init__.py ├── _version.py └── hyperop.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── hyperop_test.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/README.md -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/fabfile.py -------------------------------------------------------------------------------- /figures/python_weekly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/figures/python_weekly.png -------------------------------------------------------------------------------- /figures/tetration_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/figures/tetration_example.png -------------------------------------------------------------------------------- /hyperop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/hyperop/__init__.py -------------------------------------------------------------------------------- /hyperop/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1" 2 | -------------------------------------------------------------------------------- /hyperop/hyperop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/hyperop/hyperop.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/hyperop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/tests/hyperop_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoppe/python-hyperoperators/HEAD/tox.ini --------------------------------------------------------------------------------