diff options
author | Ryan Petrello <rpetrell@redhat.com> | 2020-06-23 23:38:29 +0200 |
---|---|---|
committer | Ryan Petrello <rpetrell@redhat.com> | 2020-06-23 23:53:14 +0200 |
commit | b6c210ee97d32fe0500cb3054a50dbc7716416b1 (patch) | |
tree | a012501ce56c07bdf62dd8a2c32a51a0d5c8b5d7 /awxkit/setup.py | |
parent | Merge pull request #7420 from elyezer/update-credential-creation (diff) | |
download | awx-b6c210ee97d32fe0500cb3054a50dbc7716416b1.tar.xz awx-b6c210ee97d32fe0500cb3054a50dbc7716416b1.zip |
update instructions and metadata for awxkit/cli installs
Diffstat (limited to 'awxkit/setup.py')
-rw-r--r-- | awxkit/setup.py | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/awxkit/setup.py b/awxkit/setup.py index 7dac7a7b8e..6e357a800f 100644 --- a/awxkit/setup.py +++ b/awxkit/setup.py @@ -54,7 +54,10 @@ class CleanCommand(Command): setup( name='awxkit', version=get_version(), - description='awx cli client', + description='The official command line interface for Ansible AWX', + author='Red Hat, Inc.', + author_email='info@ansible.com', + url='https://github.com/ansible/awx', packages=find_packages(exclude=['test']), cmdclass={ 'clean': CleanCommand, @@ -70,6 +73,20 @@ setup( 'websockets': ['websocket-client>0.54.0'], 'crypto': ['cryptography'] }, + license='Apache 2.0', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Developers', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: Apache Software License', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3.6', + 'Topic :: System :: Software Distribution', + 'Topic :: System :: Systems Administration', + ], entry_points={ 'console_scripts': [ 'akit=awxkit.scripts.basic_session:load_interactive', |