From daff88aa45bae94248a7789be3be2508f397b7bd Mon Sep 17 00:00:00 2001 From: Fabiana Zioti Date: Thu, 21 Aug 2025 10:00:08 -0300 Subject: [PATCH 1/3] :bug: fixing deploy close #84 --- CHANGES.rst | 4 +++- MANIFEST.in | 2 ++ pyproject.toml | 12 ++++++++---- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e0e695d..4ffc0b5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -20,13 +20,15 @@ Changes ======= -Version 1.0.1 (2025-08-20) +Version 1.0.1 (2025-08-21) -------------------------- - Bug fix: Remove pkg_resources - deprecated (`#79 `_) - Bug fix: RefResolver - deprecated (`#80 `_) - Bug fix: Install all in pyproject (`#82 `_) - Bug fix: No access token is provided (`#58 `_) +- Bug fix: Review deploy for pypi (`#84 `_) + Version 1.0.0 (2025-03-11) diff --git a/MANIFEST.in b/MANIFEST.in index c3bc093..f3a46bb 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -21,6 +21,7 @@ include *.rst include *.sh include *.txt include LICENSE +include README.rst include pytest.ini recursive-exclude docs/sphinx/_build * recursive-include docs *.bat @@ -36,4 +37,5 @@ recursive-include tests *.py recursive-include tests *.json recursive-include examples *.py recursive-include lccs/jsonschemas *.json +recursive-include lccs/templates *.html recursive-include lccs *.html diff --git a/pyproject.toml b/pyproject.toml index 9e9f2d4..aa7c165 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [project] name = "lccs" +version="1.0.1" description = "." readme = "README.rst" requires-python = ">=3.8" @@ -13,7 +14,7 @@ keywords = [ classifiers = [ "Intended Audience :: Information Technology", "Intended Audience :: Science/Research", - "License :: OSI Approved :: GNU General Public License version 3 License", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -21,7 +22,6 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Libraries :: Python Modules", ] -version="1.0.1" dependencies = [ "Click>=7.0", "jsonschema>=3.2", @@ -62,12 +62,16 @@ requires = ["setuptools>=67.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] -include = ["lccs*"] +include = ["lccs.*"] exclude = ["tests*"] namespaces = false [tool.setuptools.package-data] -"lccs" = ["py.typed"] +"lccs" = [ + "py.typed", + "jsonschemas/*.json", + "templates/*.html" +] [project.scripts] lccs = "lccs.cli:cli" From 07aa33fac3f477525bcbf4658433cc8b07205d69 Mon Sep 17 00:00:00 2001 From: Fabiana Zioti Date: Thu, 21 Aug 2025 11:39:18 -0300 Subject: [PATCH 2/3] :bug: fixing deploy --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index aa7c165..56ea7b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,12 +62,13 @@ requires = ["setuptools>=67.0", "wheel"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] -include = ["lccs.*"] +include = ["lccs", "lccs.*"] exclude = ["tests*"] namespaces = false [tool.setuptools.package-data] "lccs" = [ + "*.py", "py.typed", "jsonschemas/*.json", "templates/*.html" From 6ee8d1dd684fe88fc4f790279aab477dbef32532 Mon Sep 17 00:00:00 2001 From: Fabiana Zioti Date: Thu, 21 Aug 2025 12:12:26 -0300 Subject: [PATCH 3/3] :bug: fixing deploy --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 56ea7b7..e38a6ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,7 +68,6 @@ namespaces = false [tool.setuptools.package-data] "lccs" = [ - "*.py", "py.typed", "jsonschemas/*.json", "templates/*.html"