Skip to content

Commit

Permalink
Merge pull request #2 from DHI-GRAS/package_name
Browse files Browse the repository at this point in the history
Change Python package name from pyefast to efast
  • Loading branch information
radosuav authored Jun 10, 2024
2 parents 2a13b0e + 928320e commit 77bc2fd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ pip install git+https://github.com/DHI-GRAS/efast.git

### Usage
```python
import pyefast
import efast

...
pyefast.fusion(
efast.fusion(
...
)
```
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pyefast"
name = "efast"
authors = [
{name = "sa", email = "smth@email.com"},
]
Expand All @@ -30,7 +30,7 @@ dev = [
]

[tool.setuptools.packages.find]
include = ["pyefast"]
include = ["efast"]

[tool.ruff.lint]
select = ["I"]
Expand Down
6 changes: 3 additions & 3 deletions run_efast.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

from dateutil import rrule

import pyefast.efast as efast
import pyefast.s2_processing as s2
import pyefast.s3_processing as s3
import efast.efast as efast
import efast.s2_processing as s2
import efast.s3_processing as s3

# Test parameters
path = Path("./test_data").absolute()
Expand Down

0 comments on commit 77bc2fd

Please sign in to comment.