diff options
author | Ryan Petrello <rpetrell@redhat.com> | 2021-03-19 17:44:51 +0100 |
---|---|---|
committer | Ryan Petrello <rpetrell@redhat.com> | 2021-03-23 14:39:58 +0100 |
commit | c2ef0a65002b4c945fedfefc121dbc0a0390894f (patch) | |
tree | 52ab6712c9673f16b3f6aa5213f565b0e4008863 /awxkit/setup.py | |
parent | Merge pull request #9655 from ansible/jakemcdermott-patch-changelog (diff) | |
download | awx-c2ef0a65002b4c945fedfefc121dbc0a0390894f.tar.xz awx-c2ef0a65002b4c945fedfefc121dbc0a0390894f.zip |
move code linting to a stricter pep8-esque auto-formatting tool, black
Diffstat (limited to 'awxkit/setup.py')
-rw-r--r-- | awxkit/setup.py | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/awxkit/setup.py b/awxkit/setup.py index b446ba0a90..23f4e161cb 100644 --- a/awxkit/setup.py +++ b/awxkit/setup.py @@ -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']}, ) |