From 0cfc5de467823998ba72af1fee1d2a8aa865fabc Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Thu, 1 Apr 2021 14:06:01 -0500 Subject: [PATCH] fix: correct classifiers in `setup.py` (#107) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery-sqlalchemy/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Follow-up to https://github.com/googleapis/python-bigquery-sqlalchemy/pull/92 🦕 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 55a28337..9fbc5998 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,8 @@ def readme(): classifiers=[ release_status, "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License" "Programming Language :: Python", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7",