File tree Expand file tree Collapse file tree 11 files changed +10
-10
lines changed Expand file tree Collapse file tree 11 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Supported REPLs:
49
49
[ ` $PYTHON_STARTUP ` ] ( https://docs.python.org/3/using/cmdline.html#envvar-PYTHONSTARTUP ) .
50
50
51
51
``` python
52
- from python_wakatime .python import install_hook
52
+ from repl_python_wakatime .python import install_hook
53
53
54
54
install_hook()
55
55
```
@@ -60,7 +60,7 @@ install_hook()
60
60
61
61
``` python
62
62
from ptpython.repl import PythonRepl
63
- from python_wakatime .ptpython import install_hook
63
+ from repl_python_wakatime .ptpython import install_hook
64
64
65
65
66
66
def configure (repl : PythonRepl) -> None :
@@ -74,7 +74,7 @@ def configure(repl: PythonRepl) -> None:
74
74
- configure file: ` ~/.ipython/profile_default/ipython_config.py ` .
75
75
76
76
``` python
77
- from python_wakatime .iptpython import install_hook
77
+ from repl_python_wakatime .iptpython import install_hook
78
78
79
79
install_hook(c)
80
80
```
Original file line number Diff line number Diff line change 1
- # python_wakatime
1
+ # repl_python_wakatime
2
2
3
3
```` {eval-rst}
4
4
```{eval-sh}
Original file line number Diff line number Diff line change 2
2
3
3
https://www.sphinx-doc.org/en/master/usage/configuration.html
4
4
"""
5
- from python_wakatime import __version__ as version # type: ignore
6
- from python_wakatime ._metainfo import ( # type: ignore
5
+ from repl_python_wakatime import __version__ as version # type: ignore
6
+ from repl_python_wakatime ._metainfo import ( # type: ignore
7
7
author ,
8
8
copyright ,
9
9
project ,
Original file line number Diff line number Diff line change @@ -39,16 +39,16 @@ Download = "https://github.com/wakatime/repl-python-wakatime/releases"
39
39
Source = " https://github.com/wakatime/repl-python-wakatime"
40
40
41
41
[tool .setuptools .package-data ]
42
- python_wakatime = [" py.typed" , " assets/*" ]
42
+ repl_python_wakatime = [" py.typed" , " assets/*" ]
43
43
44
44
[tool .setuptools .dynamic .optional-dependencies ]
45
45
dev = { file = " requirements/dev.txt" }
46
46
47
47
[tool .setuptools_scm ]
48
- write_to = " src/python_wakatime /_version.py"
48
+ write_to = " src/repl_python_wakatime /_version.py"
49
49
50
50
[tool .setuptools-generate ]
51
- write-to = " src/python_wakatime /_metainfo.py"
51
+ write-to = " src/repl_python_wakatime /_metainfo.py"
52
52
53
53
[tool .black ]
54
54
line-length = 79
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 4
4
import os
5
5
from pathlib import Path
6
6
7
- from python_wakatime .utils import get_project
7
+ from repl_python_wakatime .utils import get_project
8
8
9
9
10
10
class Test :
You can’t perform that action at this time.
0 commit comments