Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# efsa_tools <img src="https://raw.githubusercontent.com/openefsa/efsa_tools/main/media/logo.png" height="140" align="right">
# efsa-tools <img src="https://raw.githubusercontent.com/openefsa/efsa_tools/main/media/logo.png" height="140" align="right">

[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable) [![codecov](https://codecov.io/gh/openefsa/efsa_tools/branch/main/graph/badge.svg?token=0YQIJKISMA)](https://codecov.io/gh/openefsa/efsa_tools)

## Overview

The **efsa_tools** package brings together all the functions developed for
The **efsa-tools** package brings together all the functions developed for
EFSA's ad hoc data collections, providing tools for dataset operations as well
as utilities designed to preserve data history.

Expand All @@ -16,21 +16,21 @@ installed:
- **eppoPynder** - [Website](https://openefsa.github.io/eppoPynder/) | [PyPI](https://pypi.org/project/eppoPynder/).
- **pystiller** - [Website](https://openefsa.github.io/pystiller/) | [PyPI](https://pypi.org/project/pystiller/).

These packages are not required to use **efsa_tools**, but are included for
These packages are not required to use **efsa-tools**, but are included for
convenience and can be imported and used directly in the code if needed:

```python
import eppoPynder
import eppopynder
# and/or
import pystiller
```

## Installation

### From PyPi
### From PyPI

```
pip install efsa_tools
pip install efsa-tools
```

### Development version
Expand Down
16 changes: 8 additions & 8 deletions docs/guide.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Introduction to efsa_tools
# Introduction to efsa-tools

## Overview

The **efsa_tools** package brings together all the functions developed for
The **efsa-tools** package brings together all the functions developed for
EFSA's ad hoc data collections, providing tools for dataset operations as well
as utilities designed to preserve data history.

Expand All @@ -14,21 +14,21 @@ installed:
- **eppoPynder** - [Website](https://openefsa.github.io/eppoPynder/) | [PyPI](https://pypi.org/project/eppoPynder/).
- **pystiller** - [Website](https://openefsa.github.io/pystiller/) | [PyPI](https://pypi.org/project/pystiller/).

These packages are not required to use **efsa_tools**, but are included for
These packages are not required to use **efsa-tools**, but are included for
convenience and can be imported and used directly in the code if needed:

```python
import eppoPynder
import eppopynder
# and/or
import pystiller
```

## Installation

### From PyPi
### From PyPI

```
pip install efsa_tools
pip install efsa-tools
```

### Development version
Expand All @@ -41,11 +41,11 @@ pip install git+https://github.com/openefsa/efsa_tools.git

## Basic usage

The main purpose of *efsa_tools* is to provide tools for managing datasets and
The main purpose of *efsa-tools* is to provide tools for managing datasets and
tracking data history within the context of data collections.

Below are examples demonstrating how to use the functions in this package.
First, load the *efsa_tools* package:
First, load the *efsa-tools* package:

```python
from efsa_tools import *
Expand Down
Binary file modified media/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "efsa_tools"
name = "efsa-tools"
version = "1.0.0"
description = "EFSA ensemble of data collections tools"
readme = "README.md"
Expand Down
Loading