Skip to content

Commit bdd4104

Browse files
authored
Merge pull request #704 from addisonlynch/black-config-files
STY: Blacken top-level config files
2 parents b99ae82 + 5fd1498 commit bdd4104

File tree

2 files changed

+187
-124
lines changed

2 files changed

+187
-124
lines changed

setup.py

+22-22
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
import versioneer
77

8-
NAME = 'pandas-datareader'
8+
NAME = "pandas-datareader"
99

1010

1111
def readme():
12-
with open('README.rst') as f:
12+
with open("README.rst") as f:
1313
return f.read()
1414

1515

@@ -24,30 +24,30 @@ def readme():
2424
version=versioneer.get_version(),
2525
cmdclass=versioneer.get_cmdclass(),
2626
description="Data readers extracted from the pandas codebase,"
27-
"should be compatible with recent pandas versions",
27+
"should be compatible with recent pandas versions",
2828
long_description=readme(),
29-
license='BSD License',
30-
author='The PyData Development Team',
31-
author_email='[email protected]',
32-
url='https://github.com/pydata/pandas-datareader',
29+
license="BSD License",
30+
author="The PyData Development Team",
31+
author_email="[email protected]",
32+
url="https://github.com/pydata/pandas-datareader",
3333
classifiers=[
34-
'Development Status :: 4 - Beta',
35-
'Environment :: Console',
36-
'Intended Audience :: Science/Research',
37-
'Operating System :: OS Independent',
38-
'Programming Language :: Python',
39-
'Programming Language :: Python :: 2',
40-
'Programming Language :: Python :: 2.7',
41-
'Programming Language :: Python :: 3',
42-
'Programming Language :: Python :: 3.5',
43-
'Programming Language :: Python :: 3.6',
44-
'Programming Language :: Python :: 3.7',
45-
'Topic :: Scientific/Engineering',
34+
"Development Status :: 4 - Beta",
35+
"Environment :: Console",
36+
"Intended Audience :: Science/Research",
37+
"Operating System :: OS Independent",
38+
"Programming Language :: Python",
39+
"Programming Language :: Python :: 2",
40+
"Programming Language :: Python :: 2.7",
41+
"Programming Language :: Python :: 3",
42+
"Programming Language :: Python :: 3.5",
43+
"Programming Language :: Python :: 3.6",
44+
"Programming Language :: Python :: 3.7",
45+
"Topic :: Scientific/Engineering",
4646
],
47-
keywords='data',
47+
keywords="data",
4848
install_requires=install_requires,
49-
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
50-
test_suite='tests',
49+
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
50+
test_suite="tests",
5151
tests_require=tests_require,
5252
zip_safe=False,
5353
)

0 commit comments

Comments
 (0)