From cf4d3ae0109c1a643e8e047596b05df514371514 Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 3 Mar 2017 10:19:53 +0000 Subject: [PATCH] =?UTF-8?q?[MANIFEST.in]=20add=20missing=C2=A0files;=20sim?= =?UTF-8?q?plify=20glob=20patterns=20for=20Tests/=20folder?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For the Tests/ folder, the next time we add a new type of files, we simply need to add a new glob pattern. The source distribution is now in sync with the content of the repository as returned by `git ls-files` --- MANIFEST.in | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 1899f5103..1ae17c688 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,8 @@ include README.rst include LICENSE include NEWS.rst +include Makefile +include fonttools include Snippets/*.py include Snippets/README.md include MetaTools/*.py @@ -10,13 +12,17 @@ include *requirements.txt include tox.ini include run-tests.sh +include .appveyor.yml +include .codecov.yml +include .coveragerc +include .travis.yml +recursive-include .travis *.sh + recursive-include Doc/man/man1 *.1 -recursive-include Tests *.py -recursive-include Tests data/*.ttx data/*.otx data/*.fea -recursive-include Tests data/*.feax -recursive-include Tests data/*.txt data/*.ttx.* -recursive-include Tests data/mti/*.txt data/mti/*.ttx.* -recursive-include Tests data/mti/*.ttx data/mti/README -recursive-include Tests data/*.lwfn data/*.pfa data/*.pfb -recursive-include Tests data/*.xml data/*.designspace data/*.bin +recursive-include Tests *.py *.ttx *.otx *.fea *.feax +recursive-include Tests *.otf *.ttx.* +recursive-include Tests *.glif *.plist +recursive-include Tests *.txt README +recursive-include Tests *.lwfn *.pfa *.pfb +recursive-include Tests *.xml *.designspace *.bin