From 0b322e47a75cdfd132d178aba9f1ff52d7e40fc0 Mon Sep 17 00:00:00 2001 From: Andre Perkins Date: Mon, 30 Sep 2024 23:26:52 +0000 Subject: [PATCH] Update setup.py --- fme/setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/fme/setup.py b/fme/setup.py index 30e1cde..4a62204 100644 --- a/fme/setup.py +++ b/fme/setup.py @@ -15,20 +15,22 @@ def read_requirements(filename: str): setup( name="fme", version="0.2.0", - description="", + description=( + "Train and evaluate weather/climate model emulators" + ), long_description=open("README.md").read(), long_description_content_type="text/markdown", classifiers=[ "Intended Audience :: Science/Research", - "Development Status :: 3 - Alpha", + "Development Status :: 3 - Beta", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], - keywords="", + keywords=["weather", "climate", "machine learning", "emulation"], url="https://github.com/ai2cm/ace", author="Allen Institute for Artificial Intelligence", - author_email="oliverwm@allenai.org", + author_email="climate-public-maintainer@allenai.org", license="Apache", packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"],