Skip to content

Commit

Permalink
Change Python package name from pyefast to efast
Browse files Browse the repository at this point in the history
Now it corresponds to GitHub repository name
  • Loading branch information
radosuav committed Jun 10, 2024
1 parent fab151b commit ae45313
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 ae45313

Please sign in to comment.