diff -r 000000000000 -r b2be9a32f3fc src/source/package_layout.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/source/package_layout.rst Thu Dec 06 08:24:10 2018 +0100 @@ -0,0 +1,21 @@ +PyAMS Package directory layout +------------------------------ + +.. code-block:: bash + + + ├── pyams_/ + │   ├── 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) + : :.. .py <- source code + : : + │   └── site.py + + ...