From c474d021efffdeb955edd947fccf96aefcbb5809 Mon Sep 17 00:00:00 2001 From: limafresh Date: Fri, 25 Oct 2024 12:42:12 +0300 Subject: [PATCH] Removed MANIFEST.in and replaced it with information in pyproject.toml --- MANIFEST.in | 1 - pyproject.toml | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) delete mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index 84fbfcb..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1 +0,0 @@ -recursive-include src/pyqulator/locales *.qm diff --git a/pyproject.toml b/pyproject.toml index ae3dcc3..0225acc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pyqulator" -version = "1.5.1" +version = "1.5.2" dependencies = [ "PyQt6>=6.4.2", "sympy>=1.13.3", @@ -38,6 +38,9 @@ pyqulator = "pyqulator.main:main" Repository = "https://github.com/limafresh/pyqulator" Issues = "https://github.com/limafresh/pyqulator/issues" +[tool.setuptools.package-data] +pyqulator = ["locales/*.qm"] + [tool.ruff] line-length = 120 exclude = ["src/pyqulator/ui.py"]