Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/brazil-data-cube/lccs.py/issues/79>`_)
- Bug fix: RefResolver - deprecated (`#80 <https://github.com/brazil-data-cube/lccs.py/issues/80>`_)
- Bug fix: Install all in pyproject (`#82 <https://github.com/brazil-data-cube/lccs.py/issues/82>`_)
- Bug fix: No access token is provided (`#58 <https://github.com/brazil-data-cube/lccs.py/issues/58>`_)
- Bug fix: Review deploy for pypi (`#84 <https://github.com/brazil-data-cube/lccs.py/issues/84>`_)



Version 1.0.0 (2025-03-11)
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[project]
name = "lccs"
version="1.0.1"
description = "."
readme = "README.rst"
requires-python = ">=3.8"
Expand All @@ -13,15 +14,14 @@ 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",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
version="1.0.1"
dependencies = [
"Click>=7.0",
"jsonschema>=3.2",
Expand Down Expand Up @@ -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"