Skip to content

Commit 706e428

Browse files
authored
Fix schema error and update python packaging (mamolinux#71)
1 parent eebbf99 commit 706e428

File tree

3 files changed

+3
-44
lines changed

3 files changed

+3
-44
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[build-system]
22
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
34

45
[project]
56
name = "leaptime-manager"
@@ -42,7 +43,7 @@ leaptime-manager = "LeaptimeManager.main:start_LTMCli"
4243
where = ["src"]
4344

4445
[tool.setuptools.package-data]
45-
"*" = ["*VERSION", "*.ui"]
46+
"*" = ["*.ui"]
4647

4748
[tool.setuptools.dynamic]
4849
version = {file = "src/LeaptimeManager/VERSION"}

setup.cfg

Lines changed: 0 additions & 42 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def run(self):
3838

3939
data_files = [('share/applications', glob.glob("data/applications/*.desktop")),
4040
('share/icons/hicolor/scalable/apps', glob.glob("data/icons/*")),
41-
(gschema_dir_suffix, glob.glob("data/schema/*.xml"))
41+
(gschema_dir_suffix, glob.glob("data/*.xml"))
4242
]
4343

4444
def create_mo_files():

0 commit comments

Comments
 (0)