chore: run black

This commit is contained in:
Jose Diaz-Gonzalez
2023-05-29 18:32:39 -04:00
parent b5d749ec46
commit cca8a851ad
3 changed files with 716 additions and 573 deletions

View File

@@ -1 +1 @@
__version__ = '0.42.0' __version__ = "0.42.0"

File diff suppressed because it is too large Load Diff

View File

@@ -5,6 +5,7 @@ from github_backup import __version__
try: try:
from setuptools import setup from setuptools import setup
setup # workaround for pyflakes issue #13 setup # workaround for pyflakes issue #13
except ImportError: except ImportError:
from distutils.core import setup from distutils.core import setup
@@ -15,6 +16,7 @@ except ImportError:
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html) # http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try: try:
import multiprocessing import multiprocessing
multiprocessing multiprocessing
except ImportError: except ImportError:
pass pass
@@ -25,26 +27,26 @@ def open_file(fname):
setup( setup(
name='github-backup', name="github-backup",
version=__version__, version=__version__,
author='Jose Diaz-Gonzalez', author="Jose Diaz-Gonzalez",
author_email='github-backup@josediazgonzalez.com', author_email="github-backup@josediazgonzalez.com",
packages=['github_backup'], packages=["github_backup"],
scripts=['bin/github-backup'], scripts=["bin/github-backup"],
url='http://github.com/josegonzalez/python-github-backup', url="http://github.com/josegonzalez/python-github-backup",
license='MIT', license="MIT",
classifiers=[ classifiers=[
'Development Status :: 5 - Production/Stable', "Development Status :: 5 - Production/Stable",
'Topic :: System :: Archiving :: Backup', "Topic :: System :: Archiving :: Backup",
'License :: OSI Approved :: MIT License', "License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.5', "Programming Language :: Python :: 3.5",
'Programming Language :: Python :: 3.6', "Programming Language :: Python :: 3.6",
'Programming Language :: Python :: 3.7', "Programming Language :: Python :: 3.7",
'Programming Language :: Python :: 3.8', "Programming Language :: Python :: 3.8",
], ],
description='backup a github user or organization', description="backup a github user or organization",
long_description=open_file('README.rst').read(), long_description=open_file("README.rst").read(),
long_description_content_type='text/x-rst', long_description_content_type="text/x-rst",
install_requires=open_file('requirements.txt').readlines(), install_requires=open_file("requirements.txt").readlines(),
zip_safe=True, zip_safe=True,
) )