Skip to content

Commit 9bd8872

Browse files
committed
apply python black formatting
1 parent 5d3f934 commit 9bd8872

14 files changed

+1628
-1102
lines changed

setup.py

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,23 @@
1212

1313
if __name__ == "__main__":
1414
setuptools.setup(
15-
name='twarc',
15+
name="twarc",
1616
version=version,
17-
url='https://github.com/docnow/twarc',
18-
author='Ed Summers',
19-
author_email='[email protected]',
20-
packages=['twarc'],
21-
description='Archive tweets from the command line',
17+
url="https://github.com/docnow/twarc",
18+
author="Ed Summers",
19+
author_email="[email protected]",
20+
packages=["twarc"],
21+
description="Archive tweets from the command line",
2222
long_description=long_description,
2323
long_description_content_type="text/markdown",
24-
python_requires='>=3.3',
24+
python_requires=">=3.3",
2525
install_requires=dependencies,
26-
setup_requires=['pytest-runner'],
27-
tests_require=['pytest', 'python-dotenv', 'pytz'],
28-
entry_points={'console_scripts': [
29-
'twarc = twarc.command:main',
30-
'twarc2 = twarc.command2:twarc2',
31-
]}
26+
setup_requires=["pytest-runner"],
27+
tests_require=["pytest", "python-dotenv", "pytz"],
28+
entry_points={
29+
"console_scripts": [
30+
"twarc = twarc.command:main",
31+
"twarc2 = twarc.command2:twarc2",
32+
]
33+
},
3234
)

0 commit comments

Comments
 (0)