gitextract_t7nlq2go/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION ├── docs/ │ ├── Makefile │ └── source/ │ ├── changelog.rst │ ├── conf.py │ ├── event_handlers.rst │ ├── field_processors.rst │ ├── fields.rst │ ├── getting_started.rst │ ├── index.rst │ ├── raml.rst │ ├── relationships.rst │ └── schemas.rst ├── ramses/ │ ├── __init__.py │ ├── acl.py │ ├── auth.py │ ├── generators.py │ ├── models.py │ ├── registry.py │ ├── scaffolds/ │ │ ├── __init__.py │ │ └── ramses_starter/ │ │ ├── +package+/ │ │ │ ├── __init__.py │ │ │ └── tests/ │ │ │ ├── __init__.py │ │ │ ├── api.raml │ │ │ ├── items.json │ │ │ ├── requirements.txt │ │ │ └── test_api.py_tmpl │ │ ├── .gitignore_tmpl │ │ ├── README.md │ │ ├── api.raml_tmpl │ │ ├── items.json │ │ ├── local.ini_tmpl │ │ ├── requirements.txt │ │ └── setup.py_tmpl │ ├── scripts/ │ │ ├── __init__.py │ │ └── scaffold_test.py │ ├── utils.py │ └── views.py ├── requirements.dev ├── setup.py ├── tests/ │ ├── __init__.py │ ├── fixtures.py │ ├── test_acl.py │ ├── test_auth.py │ ├── test_generators.py │ ├── test_models.py │ ├── test_registry.py │ ├── test_utils.py │ └── test_views.py └── tox.ini