Skip to content

Commit

Permalink
Merge pull request #34 from sepehrkrz/main
Browse files Browse the repository at this point in the history
Fixed not adding json extention to zarr files in list mode
  • Loading branch information
sepehrkrz authored Nov 13, 2023
2 parents 57198d1 + 7828e0f commit 9458b8c
Show file tree
Hide file tree
Showing 4 changed files with 663 additions and 21 deletions.
57 changes: 57 additions & 0 deletions .ipynb_checkpoints/setup-checkpoint.py
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",
],
)
Loading

0 comments on commit 9458b8c

Please sign in to comment.