|
12 | 12 |
|
13 | 13 | if __name__ == "__main__":
|
14 | 14 | setuptools.setup(
|
15 |
| - name='twarc', |
| 15 | + name="twarc", |
16 | 16 | version=version,
|
17 |
| - url='https://github.com/docnow/twarc', |
18 |
| - author='Ed Summers', |
19 |
| - |
20 |
| - packages=['twarc'], |
21 |
| - description='Archive tweets from the command line', |
| 17 | + url="https://github.com/docnow/twarc", |
| 18 | + author="Ed Summers", |
| 19 | + |
| 20 | + packages=["twarc"], |
| 21 | + description="Archive tweets from the command line", |
22 | 22 | long_description=long_description,
|
23 | 23 | long_description_content_type="text/markdown",
|
24 |
| - python_requires='>=3.3', |
| 24 | + python_requires=">=3.3", |
25 | 25 | 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 | + }, |
32 | 34 | )
|
0 commit comments