forked from canonical/microk8s
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enforce double quotes with Black (canonical#1968)
- Loading branch information
Showing
30 changed files
with
614 additions
and
615 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,5 @@ | |
|
||
from cli import microk8s | ||
|
||
if __name__ == '__main__': | ||
if __name__ == "__main__": | ||
microk8s.cli() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name='microk8s', | ||
version='1.0.2', | ||
url='https://github.com/ubuntu/microk8s', | ||
license='Apache-2.0', | ||
author='Joe Borg', | ||
author_email='joseph.borg@canonical.com', | ||
description='MicroK8s is a small, fast, single-package Kubernetes for developers, IoT and edge', | ||
packages=['cli', 'common', 'vm_providers', 'vm_providers._multipass', 'vm_providers.repo'], | ||
name="microk8s", | ||
version="1.0.2", | ||
url="https://github.com/ubuntu/microk8s", | ||
license="Apache-2.0", | ||
author="Joe Borg", | ||
author_email="joseph.borg@canonical.com", | ||
description="MicroK8s is a small, fast, single-package Kubernetes for developers, IoT and edge", | ||
packages=["cli", "common", "vm_providers", "vm_providers._multipass", "vm_providers.repo"], | ||
install_requires=[ | ||
'click~=7.0', | ||
'progressbar33==2.4', | ||
'requests==2.20.0', | ||
'requests_unixsocket==0.1.5', | ||
'simplejson==3.8.2', | ||
'toml==0.10.0', | ||
'urllib3==1.24.2', | ||
"click~=7.0", | ||
"progressbar33==2.4", | ||
"requests==2.20.0", | ||
"requests_unixsocket==0.1.5", | ||
"simplejson==3.8.2", | ||
"toml==0.10.0", | ||
"urllib3==1.24.2", | ||
], | ||
platforms='any', | ||
platforms="any", | ||
entry_points={ | ||
'console_scripts': [ | ||
'microk8s=cli.microk8s:cli', | ||
"console_scripts": [ | ||
"microk8s=cli.microk8s:cli", | ||
] | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.