forked from kokkos/pykokkos-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
40 lines (32 loc) · 820 Bytes
/
MANIFEST.in
File metadata and controls
40 lines (32 loc) · 820 Bytes
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
# direct includes
include CMakeLists.txt
include VERSION
include LICENSE
include README.md
include CHANGES.md
include CONTRIBUTING.md
include CODE_OF_CONDUCT.md
include requirements.txt
include pytest.ini
# recursive includes
recursive-include cmake *
recursive-include kokkos *
recursive-include examples *
recursive-include external *
recursive-include include *
recursive-include src *
recursive-include tests *
recursive-include scripts *
recursive-include .requirements *
# global exclude
global-exclude *.pyc
global-exclude *.git*
global-exclude *__pycache__*
global-exclude kokkos/libpykokkos.*
global-exclude kokkos/__init__.py
# recursive excludes
recursive-exclude kokkos.egg-info *
recursive-exclude _skbuild *
recursive-exclude build *
recursive-exclude dist *
recursive-exclude kokkos/__pycache__ *