-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
57 lines (42 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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.2.2"
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",
],
)