File: __init__.py

package info (click to toggle)
sphinx-needs 5.1.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,108 kB
  • sloc: python: 21,148; javascript: 187; makefile: 95; sh: 29; xml: 10
file content (21 lines) | stat: -rw-r--r-- 488 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from .configuration import (
    add_dynamic_function,
    add_extra_option,
    add_need_type,
    get_need_types,
)
from .exceptions import InvalidNeedException
from .need import add_external_need, add_need, del_need, generate_need, get_needs_view

__all__ = (
    "InvalidNeedException",
    "add_dynamic_function",
    "add_external_need",
    "add_extra_option",
    "add_need",
    "add_need_type",
    "del_need",
    "generate_need",
    "get_need_types",
    "get_needs_view",
)