Skip to content
Merged
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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog

## [0.2.0] - 2026-03

### Added
- Raster backend architecture
- Examples for raster simulations
- CLI examples

### Improved
- Package organization
- Documentation

### Fixed
- Import paths in examples
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,14 @@ pytest tests/

---

## Version 0.2.0

Major improvements:

- New raster backend architecture
- Examples for raster and vector simulations
- Improved modular structure

## Documentation

Full documentation available at: [https://lambdageo.github.io/dissmodel/](https://lambdageo.github.io/dissmodel/)
Expand Down
47 changes: 43 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,42 @@ build-backend = "setuptools.build_meta"

[project]
name = "dissmodel"
version = "0.1.5"
description = "dissmodel - Discrete Spatial Modeling"
version = "0.2.0"
description = "Discrete Spatial Modeling framework for raster and vector simulations"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"

authors = [
{ name = "Sérgio Costa" },
{ name = "Nerval Santos Junior" },
{ name = "Nerval Santos Junior" }
]

maintainers = [
{ name = "Sérgio Costa" }
]

license = { text = "MIT" }
requires-python = ">=3.10"

keywords = [
"spatial modeling",
"geospatial simulation",
"cellular automata",
"gis",
"raster modeling",
"vector modeling"
]

classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]

dependencies = [
"numpy>=1.25.0",
"geopandas>=1.0.0",
Expand All @@ -27,6 +54,7 @@ dependencies = [
]

[project.optional-dependencies]

dev = [
"mypy",
"pytest",
Expand All @@ -36,14 +64,25 @@ dev = [
"mkdocs-material",
]

docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-jupyter",
]

[project.urls]
Homepage = "https://github.com/LambdaGeo/dissmodel"
Repository = "https://github.com/LambdaGeo/dissmodel"
Documentation = "https://lambdageo.github.io/dissmodel"
Issues = "https://github.com/LambdaGeo/dissmodel/issues"

[tool.setuptools]
include-package-data = true

[tool.setuptools.packages.find]
where = ["."]
include = ["dissmodel*"]

[tool.setuptools.package-data]
"dissmodel" = ["*.json", "*.csv", "*.shp", "*.geojson", "*.tif"]
Expand Down
Loading
Loading