1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
# MANIFEST.in file for coverage.py
# This file includes everything needed to recreate the entire project, even
# though many of these files are not installed by setup.py. Unpacking the
# .tar.gz source distribution would give you everything needed to continue
# developing the project. "pip install" will not install many of these files.
include CONTRIBUTORS.txt
include CHANGES.rst
include LICENSE.txt
include MANIFEST.in
include Makefile
include NOTICE.txt
include README.rst
include __main__.py
include howto.txt
include igor.py
include metacov.ini
include pylintrc
include setup.py
include tox.ini
include .editorconfig
include .readthedocs.yml
recursive-include ci *
recursive-include lab *
recursive-include .github *
recursive-include coverage/fullcoverage *.py
recursive-include coverage/ctracer *.c *.h
recursive-include doc *.py *.in *.pip *.rst *.txt *.png
recursive-include doc/_static *
prune doc/_build
prune doc/_spell
recursive-include requirements *.in *.pip
recursive-include tests *.py *.tok
recursive-include tests/gold *
recursive-include tests js/* qunit/*
prune tests/eggsrc/build
|