jbqt 0.1.2__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.2
3
+ Version: 0.1.3
4
4
  Summary:
5
5
  Author: Joseph Bochinski
6
6
  Author-email: stirgejr@gmail.com
@@ -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
+ ]
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "jbqt"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = ""
9
9
  authors = [ "Joseph Bochinski <stirgejr@gmail.com>",]
10
10
  readme = "README.md"
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
File without changes
File without changes
File without changes