Skip to content

Commit 135f611

Browse files
committed
fix: URLs in README.md and setup.py to use the correct module name
1 parent 77565b9 commit 135f611

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# beans_logging
22

33
[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://choosealicense.com/licenses/mit/)
4-
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/bybatkhuu/module.python-logging/2.build-publish.yml?logo=GitHub)](https://github.com/bybatkhuu/module.python-logging/actions/workflows/2.build-publish.yml)
5-
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/bybatkhuu/module.python-logging?logo=GitHub)](https://github.com/bybatkhuu/module.python-logging/releases)
4+
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/bybatkhuu/module-python-logging/2.build-publish.yml?logo=GitHub)](https://github.com/bybatkhuu/module-python-logging/actions/workflows/2.build-publish.yml)
5+
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/bybatkhuu/module-python-logging?logo=GitHub)](https://github.com/bybatkhuu/module-python-logging/releases)
66
[![PyPI](https://img.shields.io/pypi/v/beans-logging?logo=PyPi)](https://pypi.org/project/beans-logging)
77
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/beans-logging?logo=Python)](https://docs.conda.io/en/latest/miniconda.html)
88

@@ -49,12 +49,12 @@ pip install -U beans-logging
4949

5050
```sh
5151
# Install package by git:
52-
pip install git+https://github.com/bybatkhuu/module.python-logging.git
52+
pip install git+https://github.com/bybatkhuu/module-python-logging.git
5353
```
5454

5555
**C.** Install from **pre-built release** files
5656

57-
1. Download **`.whl`** or **`.tar.gz`** file from **releases** - <https://github.com/bybatkhuu/module.python-logging/releases>
57+
1. Download **`.whl`** or **`.tar.gz`** file from **releases** - <https://github.com/bybatkhuu/module-python-logging/releases>
5858
2. Install with pip:
5959

6060
```sh
@@ -68,7 +68,7 @@ pip install ./beans_logging-[VERSION].tar.gz
6868

6969
```sh
7070
# Clone repository by git:
71-
git clone https://github.com/bybatkhuu/module.python-logging.git beans_logging
71+
git clone https://github.com/bybatkhuu/module-python-logging.git beans_logging
7272
cd ./beans_logging
7373

7474
# Install python build tool:
@@ -89,7 +89,7 @@ pip install ./dist/beans_logging-${_VERSION}.tar.gz
8989

9090
```sh
9191
# Clone repository by git:
92-
git clone https://github.com/bybatkhuu/module.python-logging.git beans_logging
92+
git clone https://github.com/bybatkhuu/module-python-logging.git beans_logging
9393
cd ./beans_logging
9494

9595
# Install with editable development mode:
@@ -100,7 +100,7 @@ pip install -e .
100100

101101
```sh
102102
# Clone repository by git:
103-
git clone https://github.com/bybatkhuu/module.python-logging.git beans_logging
103+
git clone https://github.com/bybatkhuu/module-python-logging.git beans_logging
104104
cd ./beans_logging
105105

106106
# Install python dependencies:
@@ -126,7 +126,7 @@ logger.info("Logging info.")
126126

127127
### **Simple**
128128

129-
[**`configs/logger.yml`**](https://github.com/bybatkhuu/module.python-logging/blob/main/examples/simple/configs/logger.yml):
129+
[**`configs/logger.yml`**](https://github.com/bybatkhuu/module-python-logging/blob/main/examples/simple/configs/logger.yml):
130130

131131
```yml
132132
logger:
@@ -139,7 +139,7 @@ logger:
139139
enabled: true
140140
```
141141
142-
[**`main.py`**](https://github.com/bybatkhuu/module.python-logging/blob/main/examples/simple/main.py):
142+
[**`main.py`**](https://github.com/bybatkhuu/module-python-logging/blob/main/examples/simple/main.py):
143143

144144
```python
145145
from beans_logging.auto import logger
@@ -170,7 +170,7 @@ except Exception as err:
170170
logger.exception("Show me, what value is wrong:")
171171
```
172172

173-
Run the [**`examples/simple`**](https://github.com/bybatkhuu/module.python-logging/tree/main/examples/simple):
173+
Run the [**`examples/simple`**](https://github.com/bybatkhuu/module-python-logging/tree/main/examples/simple):
174174

175175
```sh
176176
cd ./examples/simple
@@ -233,7 +233,7 @@ python -m pytest -v
233233

234234
## Environment Variables
235235

236-
You can use the following environment variables inside [**`.env.example`**](https://github.com/bybatkhuu/module.python-logging/blob/main/.env.example) file:
236+
You can use the following environment variables inside [**`.env.example`**](https://github.com/bybatkhuu/module-python-logging/blob/main/.env.example) file:
237237

238238
```sh
239239
ENV=development
@@ -246,7 +246,7 @@ BEANS_LOGGING_LOGS_DIR="./logs"
246246

247247
## Configuration
248248

249-
You can use the following configuration template [**`logger.yml`**](https://github.com/bybatkhuu/module.python-logging/blob/main/templates/configs/logger.yml): file:
249+
You can use the following configuration template [**`logger.yml`**](https://github.com/bybatkhuu/module-python-logging/blob/main/templates/configs/logger.yml): file:
250250

251251
```yaml
252252
logger:
@@ -286,8 +286,8 @@ logger:
286286

287287
## Documentation
288288

289-
- [docs](https://github.com/bybatkhuu/module.python-logging/blob/main/docs/README.md)
290-
- [scripts](https://github.com/bybatkhuu/module.python-logging/blob/main/docs/scripts/README.md)
289+
- [docs](https://github.com/bybatkhuu/module-python-logging/blob/main/docs/README.md)
290+
- [scripts](https://github.com/bybatkhuu/module-python-logging/blob/main/docs/scripts/README.md)
291291

292292
---
293293

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
long_description_content_type="text/markdown",
2323
author="Batkhuu Byambajav",
2424
author_email="batkhuu10@gmail.com",
25-
url="https://github.com/bybatkhuu/module.python-logging",
26-
download_url=f"https://github.com/bybatkhuu/module.python-logging/archive/v{_package_version}.tar.gz",
25+
url="https://github.com/bybatkhuu/module-python-logging",
26+
download_url=f"https://github.com/bybatkhuu/module-python-logging/archive/v{_package_version}.tar.gz",
2727
keywords=[
2828
_package_name,
2929
"loguru",

0 commit comments

Comments
 (0)