Skip to content

Commit

Permalink
Fix schema error and update python packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbasu committed Jul 9, 2024
1 parent 777a5a2 commit 4d2e126
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 44 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "leaptime-manager"
Expand Down Expand Up @@ -42,7 +43,7 @@ leaptime-manager = "LeaptimeManager.main:start_LTMCli"
where = ["src"]

[tool.setuptools.package-data]
"*" = ["*VERSION", "*.ui"]
"*" = ["*.ui"]

[tool.setuptools.dynamic]
version = {file = "src/LeaptimeManager/VERSION"}
42 changes: 0 additions & 42 deletions setup.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run(self):

data_files = [('share/applications', glob.glob("data/applications/*.desktop")),
('share/icons/hicolor/scalable/apps', glob.glob("data/icons/*")),
(gschema_dir_suffix, glob.glob("data/schema/*.xml"))
(gschema_dir_suffix, glob.glob("data/*.xml"))
]

def create_mo_files():
Expand Down

0 comments on commit 4d2e126

Please sign in to comment.