File: __init__.py

package info (click to toggle)
python-azure 20251014%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 766,472 kB
  • sloc: python: 6,314,744; ansic: 804; javascript: 287; makefile: 198; sh: 198; xml: 109
file content (37 lines) | stat: -rw-r--r-- 794 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from .parse_functions import (
    parse_setup,
    parse_require,
    get_name_from_specifier,
    ParsedSetup,
    read_setup_py_content,
    get_build_config,
    get_config_setting,
    update_build_config,
    compare_string_to_glob_array,
    get_ci_config,
    get_version_py,
    get_pyproject,
    extract_package_metadata,
    VERSION_REGEX,
    VERSION_PY,
    OLD_VERSION_PY,
)

__all__ = [
    "parse_setup",
    "parse_require",
    "get_name_from_specifier",
    "ParsedSetup",
    "read_setup_py_content",
    "get_build_config",
    "get_config_setting",
    "update_build_config",
    "compare_string_to_glob_array",
    "get_ci_config",
    "get_version_py",
    "get_pyproject",
    "extract_package_metadata",
    "VERSION_REGEX",
    "VERSION_PY",
    "OLD_VERSION_PY",
]