|
4 | 4 |
|
5 | 5 | version = "0.10.1"
|
6 | 6 |
|
7 |
| -with io.open('./README.rst', encoding='utf-8') as f: |
| 7 | +with io.open("./README.rst", encoding="utf-8") as f: |
8 | 8 | readme = f.read()
|
9 | 9 |
|
10 | 10 | setup(
|
11 | 11 | name="PyMySQL",
|
12 | 12 | version=version,
|
13 |
| - url='https://github.com/PyMySQL/PyMySQL/', |
| 13 | + url="https://github.com/PyMySQL/PyMySQL/", |
14 | 14 | project_urls={
|
15 | 15 | "Documentation": "https://pymysql.readthedocs.io/",
|
16 | 16 | },
|
17 |
| - description='Pure Python MySQL Driver', |
| 17 | + description="Pure Python MySQL Driver", |
18 | 18 | long_description=readme,
|
19 |
| - packages=find_packages(exclude=['tests*', 'pymysql.tests*']), |
| 19 | + packages=find_packages(exclude=["tests*", "pymysql.tests*"]), |
20 | 20 | extras_require={
|
21 | 21 | "rsa": ["cryptography"],
|
22 | 22 | "ed25519": ["PyNaCl>=1.4.0"],
|
23 | 23 | },
|
24 | 24 | 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", |
39 | 39 | ],
|
40 | 40 | keywords="MySQL",
|
41 | 41 | )
|
0 commit comments