aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipdb/ya.make
blob: c1c769c05c691fbdda94b91ce2aa8e1fc89e4de5 (plain) (blame)
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
38
PY23_LIBRARY()

LICENSE(BSD-3-Clause)

OWNER(orivej g:python-contrib)

VERSION(0.13.9)

PEERDIR(
    contrib/python/decorator
    contrib/python/ipython
)

NO_LINT()

PY_SRCS(
    TOP_LEVEL
    ipdb/__init__.py
    ipdb/__main__.py
    ipdb/stdout.py
)

NO_CHECK_IMPORTS(
    # Modules presented below leads to initialization of pdb,
    # which try to create ~/.ipython/profile_default/history.sqlite-journal,
    # due to which import tests may crash
    ipdb.__init__
    ipdb.__main__
    ipdb.stdout
)

RESOURCE_FILES(
    PREFIX contrib/python/ipdb/
    .dist-info/METADATA
    .dist-info/top_level.txt
)

END()