summaryrefslogtreecommitdiffstats
path: root/MANIFEST.in
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-06-06 23:48:16 +0200
committerGitHub <noreply@github.com>2023-06-06 23:48:16 +0200
commit6e325d9e4dbdc020eb520a81148866d988a5dbc5 (patch)
treed9b37e218ec640790a387056f90206c89821dbdb /MANIFEST.in
parentIndicate which args can be provided multiple times. Fixes #22396 (#80970) (diff)
downloadansible-6e325d9e4dbdc020eb520a81148866d988a5dbc5.tar.xz
ansible-6e325d9e4dbdc020eb520a81148866d988a5dbc5.zip
Clean up MANIFEST.in (#80688)
* Remove unnecessary MANIFEST.in commands This eliminates more setuptools warnings during build. * Sort MANIFEST.in Now that only include commands are used, the order of the commands no longer effects the build output.
Diffstat (limited to 'MANIFEST.in')
-rw-r--r--MANIFEST.in39
1 files changed, 11 insertions, 28 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index f19f64ce3e..d4a64e1520 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,37 +1,20 @@
-include README.rst
include COPYING
-include requirements.txt
-recursive-include docs *
-include docs/docsite/rst/collections/all_plugins.rst
-exclude docs/docsite/rst_warnings
-exclude docs/docsite/rst/conf.py
-exclude docs/docsite/rst/index.rst
-exclude docs/docsite/rst/dev_guide/index.rst
-exclude docs/docsite/rst/dev_guide/testing/sanity/bin-symlinks.rst
-exclude docs/docsite/rst/dev_guide/testing/sanity/botmeta.rst
-exclude docs/docsite/rst/dev_guide/testing/sanity/integration-aliases.rst
-exclude docs/docsite/rst/dev_guide/testing/sanity/release-names.rst
-recursive-exclude docs/docsite/_build *
-recursive-exclude docs/docsite/_extensions *.pyc *.pyo
-include examples/hosts
+include bin/*
+include changelogs/CHANGELOG*.rst
+include changelogs/changelog.yaml
include examples/ansible.cfg
+include examples/hosts
include examples/scripts/ConfigureRemotingForAnsible.ps1
include examples/scripts/upgrade_to_ps3.ps1
-recursive-include licenses *.txt
+include hacking/build-ansible.py
+include hacking/test-module.py
+include hacking/update-sanity-requirements.py
+include licenses/*.txt
+include requirements.txt
+recursive-include docs *
+recursive-include hacking/build_library *.py
recursive-include packaging *.py
recursive-include test/integration *
recursive-include test/sanity *.in *.json *.py *.txt
recursive-include test/support *.py *.ps1 *.psm1 *.cs *.md
-exclude test/sanity/code-smell/botmeta.*
-exclude test/sanity/code-smell/release-names.*
-exclude test/lib/ansible_test/_internal/commands/sanity/bin_symlinks.py
-exclude test/lib/ansible_test/_internal/commands/sanity/integration_aliases.py
recursive-include test/units *
-include MANIFEST.in
-include changelogs/CHANGELOG*.rst
-include changelogs/changelog.yaml
-recursive-include hacking/build_library *.py
-include hacking/build-ansible.py
-include hacking/test-module.py
-include hacking/update-sanity-requirements.py
-include bin/*