move code linting to a stricter pep8-esque auto-formatting tool, black

This commit is contained in:
Ryan Petrello
2021-03-19 12:44:51 -04:00
parent 9b702e46fe
commit c2ef0a6500
671 changed files with 20538 additions and 21924 deletions

View File

@@ -68,11 +68,7 @@ setup(
'requests',
],
python_requires=">=3.6",
extras_require={
'formatting': ['jq'],
'websockets': ['websocket-client==0.57.0'],
'crypto': ['cryptography']
},
extras_require={'formatting': ['jq'], 'websockets': ['websocket-client==0.57.0'], 'crypto': ['cryptography']},
license='Apache 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
@@ -87,10 +83,5 @@ setup(
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
entry_points={
'console_scripts': [
'akit=awxkit.scripts.basic_session:load_interactive',
'awx=awxkit.cli:run'
]
}
entry_points={'console_scripts': ['akit=awxkit.scripts.basic_session:load_interactive', 'awx=awxkit.cli:run']},
)