-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: fill_gpi; examples: scale for quiver
- Loading branch information
Showing
6 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
from setuptools import setup | ||
|
||
import_error_msg = "Sea Ice Drift requires %s, which should be installed separately" | ||
|
||
setup( | ||
name = "sea_ice_drift", | ||
version = "0.4", | ||
version = "0.5", | ||
author = ('Anton Korosov', 'Stefan Muckenhuber'), | ||
author_email = "[email protected]", | ||
description = ("Drift of sea ice from satellite data using feature tracking and pattern matching methods"), | ||
long_description = ("Drift of sea ice from satellite data using feature tracking and pattern matching methods"), | ||
license = "GNU General Public License v3", | ||
keywords = "sar, feature tracking, pattern matching, ice drift", | ||
url = "https://github.com/nansencenter/sea_ice_drift", | ||
download_url='https://github.com/nansencenter/sea_ice_drift/archive/v0.4.tar.gz', | ||
download_url='https://github.com/nansencenter/sea_ice_drift/archive/v0.5.tar.gz', | ||
packages=['sea_ice_drift'], | ||
test_suite="sea_ice_drift.tests", | ||
classifiers=[ | ||
|