forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMANIFEST.in
48 lines (37 loc) · 844 Bytes
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
include README.md
include dist/LICENSE
include setup.cfg
include pyproject.toml
include .bumpversion.cfg
include Makefile
# Source files for perspective-python
graft perspective
include perspective/table/*.so
include perspective/table/*.dll
include perspective/table/*.dylib
graft perspective/tests
# Documentation
graft docs
exclude docs/\#*
# docs subdirs we want to skip
prune docs/build
prune docs/gh-pages
prune docs/dist
# don't ship benchmark
prune bench
# Use package.json for versioning
include package.json
# C++ build
graft dist/cmake
graft dist/src
graft perspective/src
graft perspective/include
graft dist/test
include dist/CMakeLists.txt
# Patterns to exclude from any directory
global-exclude *~
global-exclude *.pyc
global-exclude *.pyo
global-exclude .git
global-exclude .ipynb_checkpoints
global-exclude .DS_Store