summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg47
1 files changed, 45 insertions, 2 deletions
diff --git a/setup.cfg b/setup.cfg
index 04e199652a..e020ee3b15 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,4 +1,4 @@
-# Minimum target setuptools 39.2.0
+# Minimum target setuptools 45.2.0
[metadata]
name = ansible-core
@@ -38,13 +38,56 @@ classifiers =
[options]
zip_safe = False
python_requires = >=3.9
-include_package_data = True
# keep ansible-test as a verbatim script to work with editable installs, since it needs to do its
# own package redirection magic that's beyond the scope of the normal `ansible` path redirection
# done by setuptools `develop`
scripts =
bin/ansible-test
+[options.package_data]
+ansible =
+ config/*.yml
+ executor/powershell/*.ps1
+ galaxy/data/*.yml
+ galaxy/data/*/*.j2
+ galaxy/data/*/*.md
+ galaxy/data/*/*/*.cfg
+ galaxy/data/*/*/*.j2
+ galaxy/data/*/*/*.md
+ galaxy/data/*/*/*/*.j2
+ galaxy/data/*/*/*/*.yml
+ galaxy/data/*/*/*/.git_keep
+ galaxy/data/*/*/*/inventory
+ galaxy/data/*/*/.git_keep
+ galaxy/data/*/*/inventory
+ keyword_desc.yml
+ module_utils/csharp/*.cs
+ module_utils/powershell/*.psm1
+ plugins/*/*.yml
+ansible_test =
+ _data/*/*.in
+ _data/*/*.ps1
+ _data/*/*.txt
+ _data/*/*.yml
+ _data/*/*/*.ini
+ _data/ansible.cfg
+ _data/coveragerc
+ _util/*/*/*.ps1
+ _util/*/*/*.py
+ _util/*/*/*.sh
+ _util/*/*/*/*.ini
+ _util/*/*/*/*.json
+ _util/*/*/*/*.ps1
+ _util/*/*/*/*.psd1
+ _util/*/*/*/*.py
+ _util/*/*/*/*.txt
+ _util/*/*/*/*/*.cfg
+ _util/*/*/*/*/*.ps1
+ _util/*/*/*/*/*.py
+ _util/*/*/*/*/*.yml
+ config/*.template
+ config/*.yml
+
# setuptools 51.0.0
# [options.entry_points]
# console_scripts =