Skip to content

Commit

Permalink
update authors
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentsarago committed Jul 19, 2024
1 parent 04bfb12 commit 664f60b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# color-operations
# color-operations (fork of [**rio-color**](https://github.com/mapbox/rio-color) )

<p align="center">
<p align="center">Apply basic color-oriented image operations.</p>
Expand All @@ -19,24 +19,24 @@
</a>
</p>

Lightweight version of [**rio-color**](https://github.com/mapbox/rio-color) but removing rasterio dependency.
Modified version of Mapbox's [**rio-color**](https://github.com/mapbox/rio-color), removing rasterio dependency and with python>=3.10 compatibility.

## Install

You can install color-operations using pip

```
pip install -U pip
pip install color-operations
python -m pip install -U pip
python -m pip install color-operations
```

Build from source

```
git checkout https://github.com/vincentsarago/color-operations.git
cd color-operations
pip install -U pip
pip install -e .
python -m pip install -U pip
python -m pip install -e .
```

## Operations
Expand Down Expand Up @@ -80,7 +80,6 @@ Blue

![saturation](img/saturation.jpg)


#### Combinations of operations

![combos](img/combos.jpg)
Expand Down
2 changes: 1 addition & 1 deletion color_operations/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""color-ops"""
"""color-operations"""

from .operations import gamma, parse_operations, saturation, sigmoidal
from .utils import magick_to_operations, scale_dtype, to_math_type
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,10 @@
"Topic :: Scientific/Engineering :: GIS",
],
keywords="",
author="Vincent Sarago",
author_email="vincent@developmentseed.com",
author="Charlie Loyd",
author_email="charlie@mapbox.com",
maintainer="Vincent Sarago",
maintainer_email="vincent@developmentseed.com",
url="https://github.com/vincentsarago/color-operations",
license="MIT",
packages=find_packages(exclude=["tests"]),
Expand Down

0 comments on commit 664f60b

Please sign in to comment.