Skip to content

Commit 80d2105

Browse files
committed
Release v0.1.4
1 parent 166d582 commit 80d2105

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "koreui"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "Dynamic GUI Generator from JSON Schema"
99
readme = "README.md"
1010
requires-python = ">=3.10"
11-
license = { text = "MIT" }
11+
license = { text = "AGPL-3.0-only" }
1212

1313
authors = [
1414
{ name = "TheJupiterDev", email = "[email protected]" }
@@ -24,6 +24,4 @@ Repository = "https://github.com/TheJupiterDev/KoreUI.git"
2424

2525
[tool.setuptools]
2626
package-dir = { "koreui" = "src" }
27-
28-
[tool.setuptools.packages.find]
29-
where = ["src"]
27+
packages = ["koreui"]

src/__init__.py

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

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

6-
__all__ = ["JsonSchemaForm", "load_schema",]
6+
__all__ = ["JsonSchemaForm", "load_schema"]

0 commit comments

Comments
 (0)