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..e38a6ee 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", "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"