drawsvg-ui 0.5.3__tar.gz → 0.5.4__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.
- {drawsvg_ui-0.5.3/src/drawsvg_ui.egg-info → drawsvg_ui-0.5.4}/PKG-INFO +3 -1
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/README.md +2 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/pyproject.toml +2 -2
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4/src/drawsvg_ui.egg-info}/PKG-INFO +3 -1
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/LICENSE +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/setup.cfg +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/app_info.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/canvas_view.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/constants.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/drawsvg_ui.egg-info/SOURCES.txt +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/drawsvg_ui.egg-info/dependency_links.txt +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/drawsvg_ui.egg-info/entry_points.txt +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/drawsvg_ui.egg-info/requires.txt +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/drawsvg_ui.egg-info/top_level.txt +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/export_drawsvg.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/import_drawsvg.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/__init__.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/base.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/labels.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/shapes/__init__.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/shapes/curves.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/shapes/lines.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/shapes/polygons.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/shapes/rects.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/text.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/widgets/__init__.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/items/widgets/folder_tree.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/main.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/main_window.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/palette.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/properties_panel.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/ui/__init__.py +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/ui/main_window.ui +0 -0
- {drawsvg_ui-0.5.3 → drawsvg_ui-0.5.4}/src/ui/properties_panel.ui +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: drawsvg-ui
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: GUI for creating drawsvg scenes with PySide6
|
|
5
5
|
Author-email: Taron686 <Taron686@users.noreply.github.com>
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -38,6 +38,8 @@ Instead of writing raw Python code by hand, you can visually place, move, and ed
|
|
|
38
38
|
|
|
39
39
|
The goal of this project is to help users quickly prototype and generate `drawsvg` code through an intuitive drag-and-drop UI.
|
|
40
40
|
|
|
41
|
+

|
|
42
|
+
|
|
41
43
|
## Requirements
|
|
42
44
|
|
|
43
45
|
The application requires **Python 3.10**.
|
|
@@ -5,6 +5,8 @@ Instead of writing raw Python code by hand, you can visually place, move, and ed
|
|
|
5
5
|
|
|
6
6
|
The goal of this project is to help users quickly prototype and generate `drawsvg` code through an intuitive drag-and-drop UI.
|
|
7
7
|
|
|
8
|
+

|
|
9
|
+
|
|
8
10
|
## Requirements
|
|
9
11
|
|
|
10
12
|
The application requires **Python 3.10**.
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "drawsvg-ui"
|
|
7
|
-
version = "0.5.
|
|
7
|
+
version = "0.5.4"
|
|
8
8
|
description = "GUI for creating drawsvg scenes with PySide6"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -65,7 +65,7 @@ include = ["items*", "ui*"]
|
|
|
65
65
|
ui = ["*.ui"]
|
|
66
66
|
|
|
67
67
|
[tool.bumpversion]
|
|
68
|
-
current_version = "0.5.
|
|
68
|
+
current_version = "0.5.4"
|
|
69
69
|
commit = true
|
|
70
70
|
tag = true
|
|
71
71
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: drawsvg-ui
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: GUI for creating drawsvg scenes with PySide6
|
|
5
5
|
Author-email: Taron686 <Taron686@users.noreply.github.com>
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -38,6 +38,8 @@ Instead of writing raw Python code by hand, you can visually place, move, and ed
|
|
|
38
38
|
|
|
39
39
|
The goal of this project is to help users quickly prototype and generate `drawsvg` code through an intuitive drag-and-drop UI.
|
|
40
40
|
|
|
41
|
+

|
|
42
|
+
|
|
41
43
|
## Requirements
|
|
42
44
|
|
|
43
45
|
The application requires **Python 3.10**.
|
|
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
|
|
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
|