-
Notifications
You must be signed in to change notification settings - Fork 2
/
MANIFEST.in
25 lines (21 loc) · 1.14 KB
/
MANIFEST.in
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
include *.rst
include *.txt
include setup.cfg
include .travis.yml tox.ini
graft tkgridgui
recursive-include tkgridgui/examples *
recursive-include tkgridgui/tests *
prune */__pycache__
global-exclude *.py[co]
# for data files use something like:
# recursive-include tkgridgui/<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