summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-05 00:01:16 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-05 15:08:27 +0200
commitf233db10166e96a55655ca2794428455ad9bf454 (patch)
treecffeae543cab11ea336211ac3aaaad400210d91e
parent2e61d09d4cb67343a1278cad3a7a5035b0ca5096 (diff)
downloadpylint-git-f233db10166e96a55655ca2794428455ad9bf454.tar.gz
Exclude everything from the final packaging
As it's not used in debian packaging at all
-rw-r--r--MANIFEST.in14
-rw-r--r--setup.cfg5
2 files changed, 5 insertions, 14 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 1076efb93..47c65a442 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,11 +1,7 @@
-include ChangeLog
-include CONTRIBUTORS.txt
-include COPYING
-include README.rst
-include elisp/startup elisp/*.el
-include pytest.ini
-recursive-include doc *.bat *.png *.py *.svg *.rst *.txt Makefile .md
-graft tests
-recursive-exclude tests *.pyc .benchmark
+exclude ChangeLog # At least 'https://pylint.pycqa.org/en/latest/whatsnew/' is not downloaded for each install
+exclude pytest.ini
+recursive-exclude elisp *
+recursive-exclude doc *
+recursive-exclude tests *
recursive-exclude script *
recursive-exclude examples *
diff --git a/setup.cfg b/setup.cfg
index dc6f7b96f..0ad92d31a 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -49,11 +49,6 @@ install_requires =
toml>=0.7.1
colorama;sys_platform=="win32"
-[options.packages.find]
-include =
- pylint*
-
-
[options.entry_points]
console_scripts =
pylint = pylint:run_pylint