Skip to content

Commit

Permalink
ADD: plot_Q
Browse files Browse the repository at this point in the history
  • Loading branch information
tcztzy committed Apr 12, 2024
1 parent 542811c commit ccf12fd
Show file tree
Hide file tree
Showing 11 changed files with 2,169 additions and 3 deletions.
1 change: 1 addition & 0 deletions .Rprofile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source("renv/activate.R")
19 changes: 19 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
exclude: ^renv/activate.R$
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.3.7
hooks:
- id: ruff
types_or: [ python, pyi, jupyter ]
args: [ --fix ]
- id: ruff-format
types_or: [ python, pyi, jupyter ]
303 changes: 303 additions & 0 deletions examples/tess3r.ipynb

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
[project]
name = "datav"
version = "0.1.5"
version = "0.2.0"
description = "Data visualization tools for Python."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [{ name = "Tang Ziya", email = "[email protected]" }]
dependencies = [
"cartopy>=0.22",
"scikit-learn>=1.4.2",
"geopandas>=0.14.3",
"xarray>=2024.3.0",
"matplotlib>=3.8.4",
"numpy>=1.26.4",
]
classifiers = [
"Framework :: Matplotlib",
Expand All @@ -33,6 +38,8 @@ dev-dependencies = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.0.280",
"rpy2>=3.5.16",
"ipykernel>=6.29.4",
]

[tool.pytest.ini_options]
Expand Down
Loading

0 comments on commit ccf12fd

Please sign in to comment.