Skip to content

Commit bcc6754

Browse files
NiallEgansusodapop
authored andcommitted
Remove quotes from setup.cfg
Push was failing with the message: ```Invalid value for classifiers. Error: Classifiers ['"Intended Audience :: Developers"', '"License :: OSI Approved :: Apache Software License"', '"Topic :: Database :: Front-Ends"'] are not valid classifiers.``` Looking at https://setuptools.pypa.io/en/latest/userguide/declarative_config.html#using-a-src-layout, strings don't need quotes
1 parent d6fa285 commit bcc6754

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

cmdexec/clients/python/setup.cfg

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[metadata]
22
name = databricks-sql-connector
33
version = attr: databricks.sql.__version__
4-
description = "Databricks SQL Connector for Python"
4+
description = Databricks SQL Connector for Python
55
long_description = file: README.md
66
long_description_content_type = text/markdown
7-
url = "https://databricks.com"
8-
author = "Databricks"
9-
author_email = "feedback@databricks.com"
10-
license = "http://www.apache.org/licenses/LICENSE-2.0"
7+
url = https://databricks.com
8+
author = Databricks
9+
author_email = feedback@databricks.com
10+
license = http://www.apache.org/licenses/LICENSE-2.0
1111
classifiers =
12-
"Intended Audience :: Developers"
13-
"License :: OSI Approved :: Apache Software License"
14-
"Operating System :: OS Independent"
15-
"Topic :: Database :: Front-Ends"
12+
Intended Audience :: Developers
13+
License :: OSI Approved :: Apache Software License
14+
Operating System :: OS Independent
15+
Topic :: Database :: Front-Ends
1616
install_requires =
1717
thrift >= 0.13.0
1818
pyarrow >= 5.0.0

0 commit comments

Comments
 (0)