diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-13 06:12:45 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-13 06:12:45 -0400 |
commit | 51b98c60a34531113827aa6e8cf79cd70711f980 (patch) | |
tree | a363e8ba68975b4da4aaefa710f89a02bedbb52d | |
parent | 7240abf0d7c2778a03ee874efd1e52aef3c8654e (diff) | |
download | python-coveragepy-git-51b98c60a34531113827aa6e8cf79cd70711f980.tar.gz |
Source kit now has a complete working tree. #137
-rw-r--r-- | CHANGES.rst | 4 | ||||
-rw-r--r-- | MANIFEST.in | 34 |
2 files changed, 37 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 1e04f222..4329615d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -35,6 +35,10 @@ Version 4.0.1 - Pyexpat C code will no longer be recorded as a source file, fixing `issue 419`_. +- The source kit now contains all of the files needed to have a complete source + tree, re-fixing `issue 137`_. + +.. _issue 137: https://bitbucket.org/ned/coveragepy/issues/137/provide-docs-with-source-distribution .. _issue 397: https://bitbucket.org/ned/coveragepy/issues/397/stopping-and-resuming-coverage-with .. _issue 415: https://bitbucket.org/ned/coveragepy/issues/415/repeated-coveragedataupdates-cause .. _issue 416: https://bitbucket.org/ned/coveragepy/issues/416/mocking-ospathexists-causes-failures diff --git a/MANIFEST.in b/MANIFEST.in index b61fd0ea..31e2230c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,12 +3,44 @@ # MANIFEST.in file for coverage.py -include __main__.py include AUTHORS.txt include CHANGES.rst include LICENSE.txt +include MANIFEST.in +include Makefile include NOTICE.txt include README.rst +include TODO.txt +include __main__.py +include .travis.yml +include appveyor.yml +include circle.yml +include howto.txt +include igor.py +include metacov.ini +include pylintrc +include setup.py +include tox.ini +include tox_wheels.ini + +recursive-include ci *.* +exclude ci/appveyor.token recursive-include coverage/fullcoverage *.py recursive-include coverage/ctracer *.c *.h + +recursive-include doc conf.py *.pip *.rst *.txt +recursive-include doc/_static *.* +prune doc/_build + +recursive-include requirements *.pip + +recursive-include tests *.py *.tok +recursive-include tests/farm */gold*/*.* */gold*/*/*.* +recursive-include tests/farm/*/src * *.* +recursive-include tests js/*.* qunit/*.* +prune tests/eggsrc/build +prune tests/eggsrc/dist +prune tests/eggsrc/*.egg-info + +global-exclude *.py[co] |