mirror of
https://github.com/josegonzalez/python-github-backup.git
synced 2025-12-05 16:18:02 +01:00
chore: run black
This commit is contained in:
@@ -1 +1 @@
|
||||
__version__ = '0.42.0'
|
||||
__version__ = "0.42.0"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
38
setup.py
38
setup.py
@@ -5,6 +5,7 @@ from github_backup import __version__
|
||||
|
||||
try:
|
||||
from setuptools import setup
|
||||
|
||||
setup # workaround for pyflakes issue #13
|
||||
except ImportError:
|
||||
from distutils.core import setup
|
||||
@@ -15,6 +16,7 @@ except ImportError:
|
||||
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
|
||||
try:
|
||||
import multiprocessing
|
||||
|
||||
multiprocessing
|
||||
except ImportError:
|
||||
pass
|
||||
@@ -25,26 +27,26 @@ def open_file(fname):
|
||||
|
||||
|
||||
setup(
|
||||
name='github-backup',
|
||||
name="github-backup",
|
||||
version=__version__,
|
||||
author='Jose Diaz-Gonzalez',
|
||||
author_email='github-backup@josediazgonzalez.com',
|
||||
packages=['github_backup'],
|
||||
scripts=['bin/github-backup'],
|
||||
url='http://github.com/josegonzalez/python-github-backup',
|
||||
license='MIT',
|
||||
author="Jose Diaz-Gonzalez",
|
||||
author_email="github-backup@josediazgonzalez.com",
|
||||
packages=["github_backup"],
|
||||
scripts=["bin/github-backup"],
|
||||
url="http://github.com/josegonzalez/python-github-backup",
|
||||
license="MIT",
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Topic :: System :: Archiving :: Backup',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Topic :: System :: Archiving :: Backup",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
],
|
||||
description='backup a github user or organization',
|
||||
long_description=open_file('README.rst').read(),
|
||||
long_description_content_type='text/x-rst',
|
||||
install_requires=open_file('requirements.txt').readlines(),
|
||||
description="backup a github user or organization",
|
||||
long_description=open_file("README.rst").read(),
|
||||
long_description_content_type="text/x-rst",
|
||||
install_requires=open_file("requirements.txt").readlines(),
|
||||
zip_safe=True,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user