├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── setup.cfg ├── setup.py ├── simulacrum ├── __init__.py ├── coltypes.py ├── dataset.py └── simdata.py └── tests └── dataset_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/README.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/setup.py -------------------------------------------------------------------------------- /simulacrum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/simulacrum/__init__.py -------------------------------------------------------------------------------- /simulacrum/coltypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/simulacrum/coltypes.py -------------------------------------------------------------------------------- /simulacrum/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/simulacrum/dataset.py -------------------------------------------------------------------------------- /simulacrum/simdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/simulacrum/simdata.py -------------------------------------------------------------------------------- /tests/dataset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbrambleDC/simulacrum/HEAD/tests/dataset_test.py --------------------------------------------------------------------------------