-
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
5 changed files
with
198 additions
and
94 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
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 |
---|---|---|
|
@@ -2,23 +2,19 @@ | |
from pypandoc import convert_file | ||
|
||
setup( | ||
name='ncflag', | ||
version='0.2.5', | ||
name="ncflag", | ||
version="0.2.5", | ||
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' | ||
], | ||
entry_points=''' | ||
long_description=convert_file("README.md", "rst"), | ||
install_requires=["Click", "numpy", "netCDF4"], | ||
entry_points=""" | ||
[console_scripts] | ||
ncflag=ncflag.cli:cli | ||
''', | ||
""", | ||
include_package_data=False, | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
|
@@ -27,5 +23,5 @@ | |
"Programming Language :: Python :: 3.6", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
] | ||
], | ||
) |
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
Oops, something went wrong.