├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── Makefile.python ├── README.rst ├── TODO.txt ├── VERSION.txt ├── globre ├── __init__.py └── test.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | PKGNAME = globre 2 | include Makefile.python 3 | -------------------------------------------------------------------------------- /Makefile.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/Makefile.python -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/TODO.txt -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 0.1.5 2 | -------------------------------------------------------------------------------- /globre/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/globre/__init__.py -------------------------------------------------------------------------------- /globre/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/globre/test.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metagriffin/globre/HEAD/setup.py --------------------------------------------------------------------------------