├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── ci ├── requirements-py27.yml └── requirements-py36.yml ├── doc ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── setup.py └── xmap ├── __init__.py ├── test ├── __init__.py └── test_xmap.py ├── utils.py └── xmap.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = xmap/test/* 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/README.md -------------------------------------------------------------------------------- /ci/requirements-py27.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/ci/requirements-py27.yml -------------------------------------------------------------------------------- /ci/requirements-py36.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/ci/requirements-py36.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/doc/make.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/setup.py -------------------------------------------------------------------------------- /xmap/__init__.py: -------------------------------------------------------------------------------- 1 | from .xmap import XMap 2 | -------------------------------------------------------------------------------- /xmap/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xmap/test/test_xmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/xmap/test/test_xmap.py -------------------------------------------------------------------------------- /xmap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/xmap/utils.py -------------------------------------------------------------------------------- /xmap/xmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhamman/xmap/HEAD/xmap/xmap.py --------------------------------------------------------------------------------