forked from sepehrkrz/nwmurl
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from sepehrkrz/main
Fixed not adding json extention to zarr files in list mode
- Loading branch information
Showing
4 changed files
with
663 additions
and
21 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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
from setuptools import setup, find_packages | ||
|
||
# Provide the long description directly with RST markup | ||
LONG_DESCRIPTION = """ | ||
======================= | ||
nwmurl | ||
======================= | ||
URL generator tool for National Water Model data | ||
Overview | ||
-------- | ||
`nwmurl` is a Python package that allows you to generate URLs for National Water Model (NWM) data. | ||
Usage | ||
----- | ||
Install the package using pip: | ||
.. code-block:: bash | ||
pip install nwmurl | ||
Then, you can use it in your Python code: | ||
.. code-block:: python | ||
from nwmurl import generate_url | ||
url = generate_url(model="short_range", comid=12345, datetime="2023-10-29T12:00:00Z") | ||
""" | ||
|
||
# Other information | ||
VERSION = "0.1.7" | ||
DESCRIPTION = "URL generator tool for National Water Model data" | ||
|
||
setup( | ||
name="nwmurl", | ||
version=VERSION, | ||
author="Sepehr Karimi (CIROH)", | ||
author_email="[email protected]", | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type="text/x-rst", | ||
packages=find_packages(), | ||
keywords=["python", "NWM", "url"], | ||
classifiers=[ | ||
"Development Status :: 1 - Planning", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
], | ||
) |
Oops, something went wrong.