-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMANIFEST.in
More file actions
32 lines (27 loc) · 618 Bytes
/
MANIFEST.in
File metadata and controls
32 lines (27 loc) · 618 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
# Include documentation
include README.md
include LICENSE
include BUILDING.md
include API_DIFFERENCES.md
# Include C++ source files for extension
include atomic_ops_ext.cpp
include setup.py
include pyproject.toml
# Include requirements
include requirements.txt
# Exclude build artifacts
global-exclude *.pyc
global-exclude __pycache__
global-exclude *.so
global-exclude *.pyd
global-exclude *.dll
global-exclude .DS_Store
# Exclude test outputs
exclude ready
exclude output*.txt
recursive-exclude tests *.txt
recursive-exclude tests __pycache__
# Exclude build directories
prune build
prune dist
prune *.egg-info