Skip to content

Commit df14c55

Browse files
committed
black setup.py
1 parent 4185f7f commit df14c55

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

setup.py

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@
44

55
version = "0.10.1"
66

7-
with io.open('./README.rst', encoding='utf-8') as f:
7+
with io.open("./README.rst", encoding="utf-8") as f:
88
readme = f.read()
99

1010
setup(
1111
name="PyMySQL",
1212
version=version,
13-
url='https://github.com/PyMySQL/PyMySQL/',
13+
url="https://github.com/PyMySQL/PyMySQL/",
1414
project_urls={
1515
"Documentation": "https://pymysql.readthedocs.io/",
1616
},
17-
description='Pure Python MySQL Driver',
17+
description="Pure Python MySQL Driver",
1818
long_description=readme,
19-
packages=find_packages(exclude=['tests*', 'pymysql.tests*']),
19+
packages=find_packages(exclude=["tests*", "pymysql.tests*"]),
2020
extras_require={
2121
"rsa": ["cryptography"],
2222
"ed25519": ["PyNaCl>=1.4.0"],
2323
},
2424
classifiers=[
25-
'Development Status :: 5 - Production/Stable',
26-
'Programming Language :: Python :: 2',
27-
'Programming Language :: Python :: 2.7',
28-
'Programming Language :: Python :: 3',
29-
'Programming Language :: Python :: 3.5',
30-
'Programming Language :: Python :: 3.6',
31-
'Programming Language :: Python :: 3.7',
32-
'Programming Language :: Python :: 3.8',
33-
'Programming Language :: Python :: 3.9',
34-
'Programming Language :: Python :: Implementation :: CPython',
35-
'Programming Language :: Python :: Implementation :: PyPy',
36-
'Intended Audience :: Developers',
37-
'License :: OSI Approved :: MIT License',
38-
'Topic :: Database',
25+
"Development Status :: 5 - Production/Stable",
26+
"Programming Language :: Python :: 2",
27+
"Programming Language :: Python :: 2.7",
28+
"Programming Language :: Python :: 3",
29+
"Programming Language :: Python :: 3.5",
30+
"Programming Language :: Python :: 3.6",
31+
"Programming Language :: Python :: 3.7",
32+
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
34+
"Programming Language :: Python :: Implementation :: CPython",
35+
"Programming Language :: Python :: Implementation :: PyPy",
36+
"Intended Audience :: Developers",
37+
"License :: OSI Approved :: MIT License",
38+
"Topic :: Database",
3939
],
4040
keywords="MySQL",
4141
)

0 commit comments

Comments
 (0)