-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update req Python version, project URLs
- Loading branch information
Showing
4 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
# Model Mimic | ||
[![Python package](https://github.com/LIVVkit/modelmimic/actions/workflows/python-package.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/python-package.yml) | ||
[![Upload Python Package](https://github.com/LIVVkit/modelmimic/actions/workflows/python-publish.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/python-publish.yml) | ||
[![Docs](https://github.com/LIVVkit/modelmimic/actions/workflows/docs.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/docs.yml) | ||
[![Pre-Commit](https://github.com/LIVVkit/modelmimic/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/LIVVkit/modelmimic/actions/workflows/pre-commit.yml) | ||
|
||
## Generate testing data for [EVV4ESM](https://github.com/LIVVkit/evv4esm) | ||
This package mimics an Earth System Model run output data so that each type | ||
of evv4esm test can be checked systematically |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "modelmimic" | ||
requires-python = ">=3.10" | ||
requires-python = ">=3.9" | ||
authors = [{ name = "Michael Kelleher", email = "[email protected]" }] | ||
description = "Generate model-like data, _mimic_ the output of various CIME tests." | ||
readme = "README.md" | ||
|
@@ -15,15 +15,20 @@ classifiers = [ | |
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dependencies = ["numpy", "xarray", "netCDF4", "pandas", "toml"] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/LIVVkit/modelmimic/" | ||
Documentation = "https://livvkit.github.io/modelmimic/" | ||
|
||
[project.optional-dependencies] | ||
dev = ["ruff", "isort", "black"] | ||
dev = ["ruff", "isort", "black", "pytest"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "modelmimic.__version__" } | ||
|