Skip to content

Commit

Permalink
Bugfix: Update pyproject.toml so that it can actually find the package (
Browse files Browse the repository at this point in the history
#22)

* at last this is the fix to pip install properly

* bump minor version
  • Loading branch information
timothyas authored Jun 18, 2024
1 parent 30c2887 commit 99e7d98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ufs2arco"
version = "0.1.0"
version = "0.1.1"
description = "Tools for converting Unified Forecast System (UFS) output to Analysis Ready, Cloud Optimized (ARCO) format"
authors = [
{name="Timothy Smith", email="[email protected]"},
Expand Down Expand Up @@ -42,5 +42,5 @@ documentation="https://ufs2arco.readthedocs.io/en/latest/"
requires = ["setuptools>=64.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
where = ["ufs2arco"]
[tool.setuptools]
packages = ["ufs2arco"]
2 changes: 1 addition & 1 deletion ufs2arco/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.0"
__version__ = "0.1.1"

from .cice6dataset import CICE6Dataset
from .fv3dataset import FV3Dataset
Expand Down

0 comments on commit 99e7d98

Please sign in to comment.