From bb43f4c3e1cda8ad36927f3848854cc20b9b4d42 Mon Sep 17 00:00:00 2001 From: Bryce Larson Date: Wed, 24 Mar 2021 04:28:38 +0000 Subject: [PATCH] update setup.py --- setup.py | 45 ++++++++++++++++++++++----------------------- 1 file changed, 22 insertions(+), 23 deletions(-) diff --git a/setup.py b/setup.py index 073109c3828..9b158515fc6 100755 --- a/setup.py +++ b/setup.py @@ -1013,9 +1013,30 @@ class SaltDistribution(distutils.dist.Distribution): with open(SALT_LONG_DESCRIPTION_FILE, encoding="utf-8") as f: self.long_description = f.read() self.long_description_content_type = "text/x-rst" + self.python_requires = ">=3.5" + self.classifiers = [ + "Programming Language :: Python", + "Programming Language :: Cython", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Development Status :: 5 - Production/Stable", + "Environment :: Console", + "Intended Audience :: Developers", + "Intended Audience :: Information Technology", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: Apache Software License", + "Operating System :: POSIX :: Linux", + "Topic :: System :: Clustering", + "Topic :: System :: Distributed Computing", + ] self.author = "Thomas S Hatch" self.author_email = "thatch45@gmail.com" - self.url = "http://saltstack.org" + self.url = "https://saltproject.io" self.cmdclass.update( { "test": TestCommand, @@ -1072,28 +1093,6 @@ class SaltDistribution(distutils.dist.Distribution): return modules # ----- Static Data --------------------------------------------------------------------------------------------> - @property - def _property_classifiers(self): - return [ - "Programming Language :: Python", - "Programming Language :: Cython", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Development Status :: 5 - Production/Stable", - "Environment :: Console", - "Intended Audience :: Developers", - "Intended Audience :: Information Technology", - "Intended Audience :: System Administrators", - "License :: OSI Approved :: Apache Software License", - "Operating System :: POSIX :: Linux", - "Topic :: System :: Clustering", - "Topic :: System :: Distributed Computing", - ] - @property def _property_dependency_links(self): return [