Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add badges and fix typo #2

Merged
merged 2 commits into from
Oct 13, 2023
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
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,26 @@
# OGC Enviromental Data Retrieval (EDR) API Pydantic
# OGC Environmental Data Retrieval (EDR) API Pydantic

<p>
<a href="https://github.com/knmi/edr-pydantic/actions?query=workflow%3ACI" target="_blank">
<img src="https://github.com/knmi/edr-pydantic/workflows/CI/badge.svg" alt="Test">
</a>
<a href="https://codecov.io/gh/knmi/edr-pydantic" target="_blank">
<img src="https://codecov.io/gh/knmi/edr-pydantic/branch/master/graph/badge.svg" alt="Coverage">
</a>
<a href="https://pypi.org/project/edr-pydantic" target="_blank">
<img src="https://img.shields.io/pypi/v/edr-pydantic?color=%2334D058&label=pypi%20package" alt="Package version">
</a>
<a href="https://pypistats.org/packages/edr-pydantic" target="_blank">
<img src="https://img.shields.io/pypi/dm/edr-pydantic.svg" alt="Downloads">
</a>
<a href="https://github.com/knmi/edr-pydantic/blob/master/LICENSE" target="_blank">
<img src="https://img.shields.io/github/license/knmi/edr-pydantic.svg" alt="License">
</a>
</p>


This repository contains the edr-pydantic Python package. It provides [Pydantic](https://pydantic-docs.helpmanual.io/) models
for the [OGC Enviromental Data Retrieval (EDR) API](https://ogcapi.ogc.org/edr/).
for the [OGC Environmental Data Retrieval (EDR) API](https://ogcapi.ogc.org/edr/).
This can, for example, be used to help develop an EDR API using FastAPI.

## Install
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "edr-pydantic"
description = "Pydantic models for OGC Enviromental Data (EDR) API"
description = "Pydantic models for OGC Environmental Data (EDR) API"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
Expand All @@ -19,7 +19,7 @@ classifiers = [
"Topic :: Scientific/Engineering :: GIS",
"Typing :: Typed",
]
version = "0.1.0"
version = "0.1.1"
dependencies = ["pydantic>=2.3,<3"]

[project.optional-dependencies]
Expand Down