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