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
|
include *.rst
include *.txt
include *.f
include *.inc
include *.inp
include *.out
include thermo.*
include trans.*
include setup.cfg
include .travis.yml tox.ini
include meson.build
graft rocketcea
recursive-include rocketcea/examples *
recursive-include rocketcea/tests *
prune */__pycache__
global-exclude *.py[co]
# for data files use something like:
# recursive-include rocketcea/<data_directory> *
# The manifest template commands are:
# Command Description
# include pat1 pat2 ... include all files matching any of the listed patterns
# exclude pat1 pat2 ... exclude all files matching any of the listed patterns
# recursive-include dir pat1 pat2 ... include all files under dir matching any of the listed patterns
# recursive-exclude dir pat1 pat2 ... exclude all files under dir matching any of the listed patterns
# global-include pat1 pat2 ... include all files anywhere in the source tree matching any of the listed patterns
# global-exclude pat1 pat2 ... exclude all files anywhere in the source tree matching any of the listed patterns
# prune dir exclude all files under dir
# graft dir include all files under dir
|