Skip to content

Commit 166d582

Browse files
committed
Release v0.1.3
1 parent 7e1d68f commit 166d582

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

pyproject.toml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
15
[project]
26
name = "koreui"
3-
version = "0.1.2"
7+
version = "0.1.3"
48
description = "Dynamic GUI Generator from JSON Schema"
59
readme = "README.md"
610
requires-python = ">=3.10"
711
license = { text = "MIT" }
12+
813
authors = [
914
{ name = "TheJupiterDev", email = "[email protected]" }
1015
]
16+
1117
dependencies = [
1218
"PySide6>=6.9.0",
1319
]
1420

1521
[project.urls]
1622
Homepage = "https://github.com/TheJupiterDev/KoreUI"
17-
Repository = "https://github.com/TheJupiterDev/KoreUI.git"
23+
Repository = "https://github.com/TheJupiterDev/KoreUI.git"
24+
25+
[tool.setuptools]
26+
package-dir = { "koreui" = "src" }
27+
28+
[tool.setuptools.packages.find]
29+
where = ["src"]

src/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
from .kore import JsonSchemaForm
22
from .loader import load_schema
33

4-
__version__ = "0.1.2"
4+
__version__ = "0.1.3"
55

6-
__all__ = [
7-
"JsonSchemaForm",
8-
"load_schema",
9-
]
6+
__all__ = ["JsonSchemaForm", "load_schema",]

0 commit comments

Comments
 (0)