summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorShane McDonald <me@shanemcd.com>2022-06-27 15:22:25 +0200
committerShane McDonald <me@shanemcd.com>2022-06-27 19:30:01 +0200
commitcbea36745e0d4790b0b90b35fa16f7e7dcce3493 (patch)
tree7b2de75201390add9262fd8c02a832605317cafa /setup.cfg
parentUpdated setup.py --version to python3 -m setuptools_scm. (diff)
downloadawx-cbea36745e0d4790b0b90b35fa16f7e7dcce3493.tar.xz
awx-cbea36745e0d4790b0b90b35fa16f7e7dcce3493.zip
Transition from setup.py to setup.cfg
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg24
1 files changed, 24 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000000..e72b2d4546
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,24 @@
+[metadata]
+name = awx
+author = Red Hat
+author_email = info@ansible.com
+version = attr: awx.get_version
+
+[options]
+packages =
+ awx
+zip_safe = False
+include_package_data = True
+
+[options.entry_points]
+console_scripts =
+ awx-manage = awx:manage
+awx.credential_plugins =
+ conjur = awx.main.credential_plugins.conjur:conjur_plugin
+ hashivault_kv = awx.main.credential_plugins.hashivault:hashivault_kv_plugin
+ hashivault_ssh = awx.main.credential_plugins.hashivault:hashivault_ssh_plugin
+ azure_kv = awx.main.credential_plugins.azure_kv:azure_keyvault_plugin
+ aim = awx.main.credential_plugins.aim:aim_plugin
+ centrify_vault_kv = awx.main.credential_plugins.centrify_vault:centrify_plugin
+ thycotic_dsv = awx.main.credential_plugins.dsv:dsv_plugin
+ thycotic_tss = awx.main.credential_plugins.tss:tss_plugin