src/source/package_layout.rst
branchdoc-dc
changeset 109 31b3d00edb8a
parent 108 1de74ac0628f
child 110 d7dd088ed557
equal deleted inserted replaced
108:1de74ac0628f 109:31b3d00edb8a
     1 PyAMS Package directory layout
       
     2 ------------------------------
       
     3 
       
     4 .. code-block:: bash
       
     5 
       
     6 
       
     7     ├── pyams_<package>/
       
     8     │   ├── doctests/       <- Documentation for the package
       
     9     |   ├── generation/     <- ZODB Migration directives
       
    10     │   ├── interfaces/     <- Interfaces definition
       
    11     │   ├── locales/        <- Store source code translation files (.mo .pot)
       
    12     │   ├── tests/          <- Contains python scripts for running tests including test runners, unit test
       
    13     │   ├── zmi/            <- ZMI subpackage to register and define elements in admin interface
       
    14     │   ├── __init__.py
       
    15     │   ├── include.py      <- Register Pyramid directives
       
    16     │   ├── configure.zcml  <- Overload default Zope config directive (optional)
       
    17     :   :.. <module>.py     <- source code
       
    18     :   :
       
    19     │   └── site.py
       
    20 
       
    21     ...