Skip to content

Commit

Permalink
update version add long description and classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
jarq6c committed May 26, 2021
1 parent d52b102 commit 119a41e
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions python/metrics/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
from setuptools import setup, find_namespace_packages
from pathlib import Path

# python namespace subpackage
# this namespace package follows PEP420
Expand All @@ -13,7 +14,7 @@
SUBPACKAGE_SLUG = f"{NAMESPACE_PACKAGE_NAME}.{SUBPACKAGE_NAME}"

# Subpackage version
VERSION = "1.0.0-alpha.1"
VERSION = "1.0.1"

# Package author information
AUTHOR = "Jason Regina"
Expand All @@ -22,6 +23,10 @@
# Short sub-package description
DESCRIPTION = "Variety of standard model evaluation metrics."

# Long description
with (Path(__file__).parent / "README.md").open('r') as f:
LONG_DESCRIPTION = f.read()

# Package dependency requirements
REQUIREMENTS = [
"pandas",
Expand All @@ -34,11 +39,19 @@
author=AUTHOR,
author_email=AUTHOR_EMAIL,
classifiers=[
"",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: Free To Use But Restricted",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Hydrology"
],
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url="https://www.github.com/NOAA-OWP/hydrotools",
license="USDOC",
namespace_packages=[NAMESPACE_PACKAGE_NAME],
packages=find_namespace_packages(include=[f"{NAMESPACE_PACKAGE_NAME}.*"]),
package_data={},
install_requires=REQUIREMENTS,
)

0 comments on commit 119a41e

Please sign in to comment.