Skip to content

Commit

Permalink
Merge pull request #139 from NOAA-OWP/tagging
Browse files Browse the repository at this point in the history
Setup badge and ready for tagging
  • Loading branch information
GregoryPetrochenkov-NOAA authored Jul 7, 2023
2 parents f22cfc1 + 7f1490a commit 47e82fd
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 25 deletions.
3 changes: 2 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
text](https://github.com/NOAA-OWP/gval/raw/main/docs/images/gval_light_mode.png#gh-light-mode-only)

![Build and
Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)
Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)[![PyPI
version](https://badge.fury.io/py/gval.svg)](https://badge.fury.io/py/gval)

GVAL (pronounced "g-val") is a high-level Python framework to evaluate
the skill of geospatial datasets by comparing candidates to benchmark
Expand Down
2 changes: 1 addition & 1 deletion docs/markdown/01_INTRO.MD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![alt text](../images/gval_dark_mode.png#gh-dark-mode-only)
![alt text](../images/gval_light_mode.png#gh-light-mode-only)

![Build and Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)
![Build and Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)[![PyPI version](https://badge.fury.io/py/gval.svg)](https://badge.fury.io/py/gval)

GVAL (pronounced "g-val") is a high-level Python framework to evaluate the skill of geospatial datasets by comparing candidates to benchmark maps producing agreement maps and metrics.

Expand Down
3 changes: 2 additions & 1 deletion docs/sphinx/PYPI_README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
text](https://github.com/NOAA-OWP/gval/raw/main/docs/images/gval_light_mode.png#gh-light-mode-only)

![Build and
Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)
Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)[![PyPI
version](https://badge.fury.io/py/gval.svg)](https://badge.fury.io/py/gval)

GVAL (pronounced "g-val") is a high-level Python framework to evaluate
the skill of geospatial datasets by comparing candidates to benchmark
Expand Down
3 changes: 2 additions & 1 deletion docs/sphinx/SPHINX_README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
text](https://github.com/NOAA-OWP/gval/raw/main/docs/images/gval_light_mode.png#gh-light-mode-only)

![Build and
Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)
Test](https://github.com/NOAA-OWP/gval/actions/workflows/python-app.yml/badge.svg)![Coverage](https://github.com/NOAA-OWP/gval/raw/testing/docs/images/coverage.svg)[![PyPI
version](https://badge.fury.io/py/gval.svg)](https://badge.fury.io/py/gval)

GVAL (pronounced "g-val") is a high-level Python framework to evaluate
the skill of geospatial datasets by comparing candidates to benchmark
Expand Down
31 changes: 10 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'gval'

description = "Flexible, portable, and efficient geospatial evaluations for a variety of data."
authors = [
{name = "Fernando Aristizabal", email = "fernando.aristizabal@noaa.gov"},
{name = "Gregory Petrochenkov", email = "gregory.petrochenkov@noaa.gov"},
{name = "Gregory Petrochenkov", email = "gregory.petrochenkov@noaa.gov"}
]


requires-python = ">=3.8"
keywords = ["one", "two"]
keywords = ["geospatial", "evaluations"]
license = {text = "MIT"}
version = "0.1.0"
version = "0.1.1"
dynamic = ["readme", "dependencies"]


[project.optional-dependencies]
dev = ["pytest==7.2.2",
"pytest-benchmark==4.0.0",
Expand All @@ -36,26 +35,16 @@ dev = ["pytest==7.2.2",
"nbsphinx==0.9.2",
"sqlalchemy==2.0.17",
"colorama==0.4.6",
"build==0.10.0"
"build==0.10.0",
"twine==4.0.2"
]

[project.urls]
Repository = "https://github.com/NOAA-OWP/gval"
Homepage = "https://noaa-owp.github.io/gval/"

[metadata]
description = "Flexible, portable, and efficient geospatial evaluations for a variety of data."


[tool.setuptools.dynamic]
dependencies = {file = ["./requirements/base.txt"]}
readme = {file = ["./docs/sphinx/PYPI_README.MD"], content-type = "text/markdown"}

#[tool.setuptools.packages.find]
#where = ["gval"] # list of folders that contain the packages (["."] by default)
#include = ["gval*"] # package names should match these glob patterns (["*"] by default)
#exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)

#[project.optional-dependencies]
#pdf = ["ReportLab>=1.2", "RXP"]
#rest = ["docutils>=0.3", "pack ==1.1, ==1.3"]

#[project.scripts]
#my-script = "my_package.module:function"

0 comments on commit 47e82fd

Please sign in to comment.