-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathMANIFEST.in
executable file
·25 lines (24 loc) · 1.18 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
# The purpose of this file is to modify the list of files to include/exclude in
# the source archive created by the 'python setup.py sdist' command. Executing
# setup.py in the top level directory creates a default list (or manifest) and
# the directives in this file add or subtract files from the resulting MANIFEST
# file that drives the creation of the archive.
#
# Note: apparently due to a bug in setup, you cannot include a file whose name
# starts with 'build' as in 'build_everything.py'.
# Add files to the archive in addition to those that are installed by running
# 'python setup.py install'. Typically these extra files are build related.
include MANIFEST.in # this file
include bin/*
recursive-include bumps/webview/client/dist *.html *.js *.css *.svg *.png
recursive-include bumps/webview/client/src *.html *.js *.mjs *.css *.svg *.png *.ts *.vue
recursive-include bumps/dream/random123/include *.h
include bumps/dream/random123/LICENSE
include bumps/webview/client/*.html
include bumps/webview/client/*.js
include bumps/webview/client/*.json
include bumps/webview/client/*.txt
include extra/*.svg extra/*.png
# Delete files
# ex. prune this that
prune bumps/webview/client/node_modules