From fc3197373a0dd1fcb125c2b8ed723efbaef255fe Mon Sep 17 00:00:00 2001 From: Patrick Quinn Date: Thu, 22 Apr 2021 14:01:06 -0400 Subject: [PATCH] HARMONY-829: Fix classifiers fit pre-defined terms and avoid packaging failures --- setup.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 23d406e..4749fbb 100644 --- a/setup.py +++ b/setup.py @@ -35,12 +35,13 @@ url="https://github.com/nasa/zarr-eosdis-store", packages=find_packages(exclude=['docs', 'tests*']), classifiers=[ - "License :: OSI Approved :: Apache 2.0 License", - "Operating System :: OS Independent", + 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', - "Programming Language :: Python :: 3", # remove once all tested sub-versions are listed - 'Programming Language :: Python :: 3.8' + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3 :: Only', ], python_requires='>=3.8', install_requires=install_requires,