-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
742 additions
and
10 deletions.
There are no files selected for viewing
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,2 +1,8 @@ | ||
**/build | ||
**/send_to_ftp.sh | ||
*.pyc | ||
docs/build | ||
send_to_ftp.sh | ||
**/.*.swp | ||
build | ||
dist | ||
envtoolkit.egg-info |
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,7 +1,23 @@ | ||
Environmental toolkit that contains modules for: | ||
![License](https://img.shields.io/github/license/barriern/Environmental-toolkit) | ||
[![DOI](https://zenodo.org/badge/154453680.svg)](https://zenodo.org/badge/latestdoi/154453680) | ||
[![PyPI](https://img.shields.io/pypi/v/envtoolkit)](https://pypi.org/project/envtoolkit/) | ||
[![Latest Release](https://img.shields.io/github/release/barriern/Environmental-toolkit)](https://github.com/barriern/Environmental-toolkit/issues) | ||
[![GitHub Issues](https://img.shields.io/github/issues/barriern/Environmental-toolkit)](https://github.com/barriern/Environmental-toolkit/releases) | ||
|
||
|
||
# Environmental toolkit | ||
|
||
## Description | ||
|
||
Contains some code to analyse and represent environmental datasets | ||
|
||
- Generating masked lambert projections | ||
- Working with fancy colormaps from hEnvironmental toolkit that contains modules for: | ||
- Generating masked lambert projections | ||
- Working with fancy colormaps from [cpt-city](http://soliton.vm.bytemark.co.uk/pub/cpt-city/) | ||
- Spectral analysis using multitaper | ||
- Computation of monthly/daily climatologies | ||
|
||
## Documentation | ||
|
||
Full documentation is available in http://envtoolkit.nicolasbarrier.fr/ |
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,20 +1,42 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name="envtoolkit", | ||
version="1.0.0", | ||
version="1.0.1", | ||
author="Nicolas Barrier", | ||
author_email="[email protected]", | ||
description=("Python package dedicated to the Earth Scientists. It contains a module for the processing of time-series (filtering, anomalies), a module for spatial analysis, a module with color-specific functions, a module for NetCDF processing and a module for spectral analysis"), | ||
license=None, | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
url="https://github.com/barriern/Environmental-toolkit", | ||
requires=['numpy', | ||
'netCDF4', | ||
'matplotlib', | ||
're', | ||
'mpl_toolkits.basemap', | ||
'datetime.datetime', | ||
'spectrum'], | ||
) | ||
|
||
classifiers = [ | ||
#"Development Status :: 5 - Production/Stable", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"Topic :: Scientific/Engineering :: Visualization", | ||
"Topic :: Scientific/Engineering :: Physics", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Unix", | ||
"Operating System :: POSIX :: Linux", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
], | ||
|
||
) | ||
|
||
|