-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
48 lines (38 loc) · 930 Bytes
/
MANIFEST.in
File metadata and controls
48 lines (38 loc) · 930 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
41
42
43
44
45
46
47
48
# MANIFEST.in - Include/exclude files in source distribution
# Include essential documentation
include README.md
include LICENSE
include CHANGELOG.md
# Include configuration files
include pyproject.toml
include requirements.txt
# Include type stubs
include src/iLoveExcel/py.typed
# Exclude development and build artifacts
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .DS_Store
global-exclude *.so
global-exclude *.dylib
global-exclude *.dll
# Exclude test files and CI configs
prune tests
prune .github
prune .git
# Exclude build directories
prune build
prune dist
prune *.egg-info
# Exclude IDE configs
prune .vscode
prune .idea
exclude .gitignore
exclude .gitattributes
# Exclude packaging and distribution scripts
prune packaging
prune scripts
# Exclude documentation that's not needed at runtime
prune docs
# Exclude example files (users get these from GitHub)
prune examples