PyAMS Package directory layout

├── pyams_<package>/
│   ├── doctests/       <- Documentation for the package
|   ├── generation/     <- ZODB Migration directives
│   ├── interfaces/     <- Interfaces definition
│   ├── locales/        <- Store source code translation files (.mo .pot)
│   ├── tests/          <- Contains python scripts for running tests including test runners, unit test
│   ├── zmi/            <- ZMI subpackage to register and define elements in admin interface
│   ├── __init__.py
│   ├── include.py      <- Register Pyramid directives
│   ├── configure.zcml  <- Overload default Zope config directive (optional)
:   :.. <module>.py     <- source code
:   :
│   └── site.py

...