-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
62 lines (52 loc) · 1.37 KB
/
MANIFEST.in
File metadata and controls
62 lines (52 loc) · 1.37 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# MANIFEST.in - Controls what gets included in source distributions
# This is Python's equivalent to R's .Rbuildignore
# Include documentation and essential files
include README.md
include LICENSE
include requirements.txt
include requirements-dev.txt
# Include package data
recursive-include pycancensus *.py
recursive-include pycancensus *.json
recursive-include pycancensus *.yaml
# Include examples (but not test notebooks)
recursive-include examples *.py
include examples/getting_started.ipynb
include examples/basic_usage.py
# Exclude all test directories from source distributions
prune tests
prune test
prune testing
# Exclude development and debugging files
exclude debug_*.py
exclude debug_*.R
exclude notebook_debug.py
exclude test_demographic_workflow.py
# Exclude build artifacts
prune build
prune dist
prune *.egg-info
prune __pycache__
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude .DS_Store
global-exclude *.so
# Exclude version control and CI files
exclude .gitignore
exclude .github
prune .github
# Exclude IDE and editor files
exclude .vscode
exclude .idea
prune .vscode
prune .idea
global-exclude *.swp
global-exclude *.swo
global-exclude *~
# Exclude cross-validation and analysis files
exclude tests/cross_validation
prune tests/cross_validation
# Exclude Jupyter notebook checkpoints
prune .ipynb_checkpoints
global-exclude .ipynb_checkpoints