Skip to content

Commit

Permalink
black setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Jan 3, 2021
1 parent 4185f7f commit df14c55
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,38 @@

version = "0.10.1"

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

setup(
name="PyMySQL",
version=version,
url='https://github.com/PyMySQL/PyMySQL/',
url="https://github.com/PyMySQL/PyMySQL/",
project_urls={
"Documentation": "https://pymysql.readthedocs.io/",
},
description='Pure Python MySQL Driver',
description="Pure Python MySQL Driver",
long_description=readme,
packages=find_packages(exclude=['tests*', 'pymysql.tests*']),
packages=find_packages(exclude=["tests*", "pymysql.tests*"]),
extras_require={
"rsa": ["cryptography"],
"ed25519": ["PyNaCl>=1.4.0"],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'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',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Database',
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
],
keywords="MySQL",
)

0 comments on commit df14c55

Please sign in to comment.