Skip to content

Commit b3c482d

Browse files
committed
🚚 Rename python_wakatime to repl_python_wakatime
1 parent e0812c1 commit b3c482d

File tree

11 files changed

+10
-10
lines changed

11 files changed

+10
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Supported REPLs:
4949
[`$PYTHON_STARTUP`](https://docs.python.org/3/using/cmdline.html#envvar-PYTHONSTARTUP).
5050

5151
```python
52-
from python_wakatime.python import install_hook
52+
from repl_python_wakatime.python import install_hook
5353

5454
install_hook()
5555
```
@@ -60,7 +60,7 @@ install_hook()
6060

6161
```python
6262
from ptpython.repl import PythonRepl
63-
from python_wakatime.ptpython import install_hook
63+
from repl_python_wakatime.ptpython import install_hook
6464

6565

6666
def configure(repl: PythonRepl) -> None:
@@ -74,7 +74,7 @@ def configure(repl: PythonRepl) -> None:
7474
- configure file: `~/.ipython/profile_default/ipython_config.py`.
7575

7676
```python
77-
from python_wakatime.iptpython import install_hook
77+
from repl_python_wakatime.iptpython import install_hook
7878

7979
install_hook(c)
8080
```

docs/api/python_wakatime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# python_wakatime
1+
# repl_python_wakatime
22

33
````{eval-rst}
44
```{eval-sh}

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
33
https://www.sphinx-doc.org/en/master/usage/configuration.html
44
"""
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
77
author,
88
copyright,
99
project,

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ Download = "https://github.com/wakatime/repl-python-wakatime/releases"
3939
Source = "https://github.com/wakatime/repl-python-wakatime"
4040

4141
[tool.setuptools.package-data]
42-
python_wakatime = ["py.typed", "assets/*"]
42+
repl_python_wakatime = ["py.typed", "assets/*"]
4343

4444
[tool.setuptools.dynamic.optional-dependencies]
4545
dev = { file = "requirements/dev.txt" }
4646

4747
[tool.setuptools_scm]
48-
write_to = "src/python_wakatime/_version.py"
48+
write_to = "src/repl_python_wakatime/_version.py"
4949

5050
[tool.setuptools-generate]
51-
write-to = "src/python_wakatime/_metainfo.py"
51+
write-to = "src/repl_python_wakatime/_metainfo.py"
5252

5353
[tool.black]
5454
line-length = 79
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/__init___test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55
from pathlib import Path
66

7-
from python_wakatime.utils import get_project
7+
from repl_python_wakatime.utils import get_project
88

99

1010
class Test:

0 commit comments

Comments
 (0)