forked from meta-pytorch/tokenizers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
39 lines (32 loc) · 792 Bytes
/
MANIFEST.in
File metadata and controls
39 lines (32 loc) · 792 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
# Include CMake files
include CMakeLists.txt
include Utils.cmake
recursive-include cmake *
# Include C++ source files
recursive-include src *.cpp *.h *.hpp
recursive-include include *.h *.hpp
# Include third-party dependencies
recursive-include third-party *
# Include test files
recursive-include test *.py *.cpp *.h
# Include examples
recursive-include examples *
# Include documentation
include README.md
include LICENSE
include CONTRIBUTING.md
include CODE_OF_CONDUCT
# Include other necessary files
include pyproject.toml
include pytest.ini
include TARGETS
include targets.bzl
# Exclude build artifacts and unnecessary files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .git*
global-exclude .DS_Store
prune build
prune dist
prune *.egg-info