Skip to content

Commit

Permalink
first pypi release
Browse files Browse the repository at this point in the history
  • Loading branch information
oloapinivad committed Apr 7, 2023
1 parent fabfc9d commit 2076d14
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ include ecmean/reference/*.yml
include ecmean/climatology/*/*.yml
include ecmean/climatology/*/*.yml
include ecmean/climatology/*/*/*.nc
include docs/*.png
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
[![Documentation Status](https://readthedocs.org/projects/ecmean4/badge/?version=latest)](https://ecmean4.readthedocs.io/en/latest/?badge=latest)
[![PyTest](https://github.com/oloapinivad/ECmean4/actions/workflows/mambatest.yml/badge.svg)](https://github.com/oloapinivad/ECmean4/actions/workflows/mambatest.yml)
[![Coverage Status](https://coveralls.io/repos/github/oloapinivad/ECmean4/badge.svg)](https://coveralls.io/github/oloapinivad/ECmean4)
[![PyPI version](https://badge.fury.io/py/ecmean4.svg)](https://badge.fury.io/py/ecmean4)

![ECmean4](docs/ecmean4_smallest.png)

Expand Down
6 changes: 5 additions & 1 deletion docs/sphinx/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ Then you should activate the environment ::

> conda activate ECmean4

Finally you can install the development package of ECmean4 ::
Finally you can install ECmean4 directly from pip ::

> pip install ECmean4

In alterantive, you can install the development package of ECmean4 ::

> pip install -e .

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system]
requires = ["setuptools>=61.0"]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "ECmean4"
version = "0.0.3"
version = "0.1.0"
authors = [
{ name="Paolo Davini", email="[email protected]" },
{ name="Jost von Hardenberg", email="[email protected]" }
Expand Down Expand Up @@ -50,4 +50,4 @@ all = [

[project.scripts]
global_mean = "ecmean.global_mean:gm_entry_point"
performance_indices = "ecmean.performance_indices:pi_entry_point"
performance_indices = "ecmean.performance_indices:pi_entry_point"

0 comments on commit 2076d14

Please sign in to comment.