├── .editorconfig ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── _templates │ └── github-corners.html ├── conf.py ├── index.rst └── reference.rst ├── img ├── numberly.png └── refty.png ├── ipython_config.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── test_thingy.py └── thingy.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/github-corners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/docs/_templates/github-corners.html -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /img/numberly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/img/numberly.png -------------------------------------------------------------------------------- /img/refty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/img/refty.png -------------------------------------------------------------------------------- /ipython_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/ipython_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/setup.py -------------------------------------------------------------------------------- /test_thingy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/test_thingy.py -------------------------------------------------------------------------------- /thingy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Refty/thingy/HEAD/thingy.py --------------------------------------------------------------------------------