From 9c8163dff437cb0f61aa1dbd9723d4e57e70f417 Mon Sep 17 00:00:00 2001 From: Jacob Beck Date: Mon, 4 Nov 2019 09:24:31 -0700 Subject: [PATCH] add some arbitrary-ish classifiers (importantly: the versions we support) --- core/setup.py | 13 +++++++++++++ plugins/bigquery/setup.py | 13 +++++++++++++ plugins/postgres/setup.py | 13 +++++++++++++ plugins/redshift/setup.py | 13 +++++++++++++ plugins/snowflake/setup.py | 13 +++++++++++++ setup.py | 13 +++++++++++++ 6 files changed, 78 insertions(+) diff --git a/core/setup.py b/core/setup.py index 6509e481b2c..d15d82ad99e 100644 --- a/core/setup.py +++ b/core/setup.py @@ -62,4 +62,17 @@ def read(fname): 'typing-extensions>=3.7.4,<3.8', ], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + + 'License :: OSI Approved :: Apache Software License', + + 'Operating System :: Microsoft :: Windows', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX :: Linux', + + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], ) diff --git a/plugins/bigquery/setup.py b/plugins/bigquery/setup.py index 83ccb3550cf..c7c0af64d44 100644 --- a/plugins/bigquery/setup.py +++ b/plugins/bigquery/setup.py @@ -33,4 +33,17 @@ 'google-cloud-bigquery>=1.0.0,<2', ], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + + 'License :: OSI Approved :: Apache Software License', + + 'Operating System :: Microsoft :: Windows', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX :: Linux', + + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], ) diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index b9be25ed29f..b596d2b6c1f 100644 --- a/plugins/postgres/setup.py +++ b/plugins/postgres/setup.py @@ -33,4 +33,17 @@ 'psycopg2>=2.8.4,<2.9', ], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + + 'License :: OSI Approved :: Apache Software License', + + 'Operating System :: Microsoft :: Windows', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX :: Linux', + + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], ) diff --git a/plugins/redshift/setup.py b/plugins/redshift/setup.py index d3ec7aba52a..6107f5f4849 100644 --- a/plugins/redshift/setup.py +++ b/plugins/redshift/setup.py @@ -36,4 +36,17 @@ 'psycopg2>=2.7.5,<2.8', ], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + + 'License :: OSI Approved :: Apache Software License', + + 'Operating System :: Microsoft :: Windows', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX :: Linux', + + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], ) diff --git a/plugins/snowflake/setup.py b/plugins/snowflake/setup.py index 54a64fb8f4a..15520bc745d 100644 --- a/plugins/snowflake/setup.py +++ b/plugins/snowflake/setup.py @@ -36,4 +36,17 @@ 'urllib3<1.25.0', ], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + + 'License :: OSI Approved :: Apache Software License', + + 'Operating System :: Microsoft :: Windows', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX :: Linux', + + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], ) diff --git a/setup.py b/setup.py index 7bdf9f68906..00e5f4494ac 100644 --- a/setup.py +++ b/setup.py @@ -34,4 +34,17 @@ 'dbt-bigquery=={}'.format(package_version), ], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + + 'License :: OSI Approved :: Apache Software License', + + 'Operating System :: Microsoft :: Windows', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX :: Linux', + + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + ], )