-
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.
v0.3.2: unpin click, remove pypandoc
- Loading branch information
Showing
4 changed files
with
15 additions
and
9 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
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,9 +1,9 @@ | ||
name: ncagg | ||
name: ncflag | ||
channels: | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- numpy | ||
- netCDF4 | ||
- Click=7.*.* | ||
- click | ||
|
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,3 +1,3 @@ | ||
Click>=7.0, <8.0 | ||
netCDF4>=1.4.2 | ||
numpy>=1.16.2 | ||
click | ||
netCDF4 | ||
numpy |
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,16 +1,17 @@ | ||
from setuptools import setup | ||
from pypandoc import convert_file | ||
|
||
|
||
setup( | ||
name="ncflag", | ||
version="0.3.1", | ||
version="0.3.2", | ||
description="Utility and library to interface with CF-Compliant NetCDF flag variables.", | ||
author="Stefan Codrescu", | ||
author_email="[email protected]", | ||
url="https://github.com/5tefan/ncflag", | ||
packages=["ncflag"], | ||
long_description=convert_file("README.md", "rst"), | ||
install_requires=["Click", "numpy", "netCDF4"], | ||
long_description=open("README.md", "r").read(), | ||
long_description_content_type="text/markdown", | ||
install_requires=["click", "numpy", "netCDF4"], | ||
entry_points=""" | ||
[console_scripts] | ||
ncflag=ncflag.cli:cli | ||
|