├── .gitignore ├── LICENSE ├── Makefile ├── README.org ├── debian ├── changelog ├── compat ├── control ├── copyright ├── docs ├── pyversions ├── rules └── source │ └── format ├── dream ├── __init__.py └── tests │ └── test_dream.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/README.org -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.org 2 | -------------------------------------------------------------------------------- /debian/pyversions: -------------------------------------------------------------------------------- 1 | 2.6 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /dream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/dream/__init__.py -------------------------------------------------------------------------------- /dream/tests/test_dream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/dream/tests/test_dream.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simplegeo/dream/HEAD/setup.py --------------------------------------------------------------------------------