jbqt 0.1.1__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of jbqt might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: jbqt
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary:
5
5
  Author: Joseph Bochinski
6
6
  Author-email: stirgejr@gmail.com
@@ -8,7 +8,7 @@ Requires-Python: >=3.12,<4.0
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.12
10
10
  Requires-Dist: fuzzywuzzy (>=0.18.0,<0.19.0)
11
- Requires-Dist: jb-utils (>=0.1.2,<0.2.0)
11
+ Requires-Dist: jbutils (>=0.1.1,<0.2.0)
12
12
  Requires-Dist: pyqt6 (>=6.9.0,<7.0.0)
13
13
  Requires-Dist: python-levenshtein (>=0.27.1,<0.28.0)
14
14
  Description-Content-Type: text/markdown
@@ -0,0 +1,12 @@
1
+ """Common exports for jbqt"""
2
+
3
+ from jbqt.common import consts, qt_utils
4
+ from jbqt.common.consts import GlobalRefs
5
+ from jbqt.common.qt_utils import register_app
6
+
7
+ __all__ = [
8
+ "GlobalRefs",
9
+ "consts",
10
+ "qt_utils",
11
+ "register_app",
12
+ ]
@@ -0,0 +1,16 @@
1
+ """Const exports"""
2
+
3
+ from jbqt.common import consts, qt_utils
4
+ from jbqt.common.consts import COLORS, STYLES, SIZES, GlobalRefs, ICONS
5
+ from jbqt.common.qt_utils import register_app
6
+
7
+ __all__ = [
8
+ "COLORS",
9
+ "consts",
10
+ "GlobalRefs",
11
+ "ICONS",
12
+ "qt_utils",
13
+ "register_app",
14
+ "SIZES",
15
+ "STYLES",
16
+ ]
@@ -1,7 +1,7 @@
1
1
  import os
2
2
  import re
3
3
 
4
- import jb_utils
4
+ import jbutils
5
5
 
6
6
  from PyQt6.QtWidgets import QApplication, QMainWindow, QScrollArea, QWidget
7
7
  from PyQt6.QtCore import Qt, QSize
@@ -10,8 +10,8 @@ from PyQt6.QtGui import QIcon, QPixmap, QPainter, QColor
10
10
  TAG_RE = re.compile(r"^\((.+)\)(\d+\.\d+)$")
11
11
  LIST_ITEM_ROLE = Qt.ItemDataRole.UserRole - 1
12
12
 
13
- STYLES = jb_utils.STYLES
14
- COLORS = jb_utils.COLORS
13
+ STYLES = jbutils.STYLES
14
+ COLORS = jbutils.COLORS
15
15
 
16
16
 
17
17
  class GlobalRefs:
@@ -13,7 +13,7 @@ from PyQt6.QtWidgets import (
13
13
  QComboBox,
14
14
  )
15
15
 
16
- import jb_utils as utils
16
+ import jbutils as utils
17
17
  from jbqt.common import consts
18
18
  from jbqt.models import IChipsWidget
19
19
  from jbqt.widgets.chip_button import ChipButton
@@ -4,7 +4,7 @@ from PyQt6.QtCore import QObject, pyqtSignal, Qt
4
4
  from PyQt6.QtGui import QCursor, QMouseEvent, QWheelEvent
5
5
  from PyQt6.QtWidgets import QComboBox, QListWidget, QListWidgetItem
6
6
 
7
- import jb_utils as utils
7
+ import jbutils as utils
8
8
  from jbqt.common import consts, qt_utils
9
9
 
10
10
 
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "jbqt"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = ""
9
9
  authors = [ "Joseph Bochinski <stirgejr@gmail.com>",]
10
10
  readme = "README.md"
@@ -12,6 +12,6 @@ readme = "README.md"
12
12
  [tool.poetry.dependencies]
13
13
  python = "^3.12"
14
14
  pyqt6 = "^6.9.0"
15
- jb-utils = "^0.1.2"
16
15
  fuzzywuzzy = "^0.18.0"
17
16
  python-levenshtein = "^0.27.1"
17
+ jbutils = "^0.1.1"
File without changes
@@ -1,6 +0,0 @@
1
- """Const exports"""
2
-
3
- from jbqt.common.consts import COLORS, STYLES, SIZES, GlobalRefs, ICONS
4
- from jbqt.common.qt_utils import register_app
5
-
6
- __all__ = ["COLORS", "STYLES", "SIZES", "GlobalRefs", "ICONS", "register_app"]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes