Skip to content

Commit f05947c

Browse files
committed
adjust library description and README
1 parent 33b010b commit f05947c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ So you don't have to import the full library under an alias, you can also import
5151
```python
5252
# LIBRARY SUB MODULES
5353
from xulbux.base.consts import COLOR, CHARS, ANSI
54-
# Main Classes
54+
# MODULE MAIN CLASSES
5555
from xulbux import Code, Color, Console, ...
56-
# module specific imports
56+
# MODULE SPECIFIC IMPORTS
5757
from xulbux.color import rgba, hsla, hexa
5858
```
5959

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "xulbux"
77
version = "1.9.2"
88
authors = [{ name = "XulbuX", email = "xulbux.real@gmail.com" }]
99
maintainers = [{ name = "XulbuX", email = "xulbux.real@gmail.com" }]
10-
description = "A Python library which includes lots of helpful classes, types, and functions aiming to make common programming tasks simpler."
10+
description = "A Python library to simplify common programming tasks."
1111
readme = "README.md"
1212
license = "MIT"
1313
license-files = ["LICEN[CS]E.*"]

src/xulbux/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__license__ = "MIT"
66
__copyright__ = "Copyright (c) 2024 XulbuX"
77
__url__ = "https://github.com/XulbuX/PythonLibraryXulbuX"
8-
__description__ = "A Python library which includes lots of helpful classes, types, and functions aiming to make common programming tasks simpler."
8+
__description__ = "A Python library to simplify common programming tasks."
99

1010
__all__ = [
1111
"Code",

0 commit comments

Comments
 (0)