-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
50 lines (42 loc) · 1.1 KB
/
Copy pathMANIFEST.in
File metadata and controls
50 lines (42 loc) · 1.1 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
# MANIFEST.in - Include additional files in source distribution
# Documentation
include README.md
include LICENSE
include CHANGELOG.md
include SECURITY.md
# Configuration files
include pyproject.toml
# Source code and data files
recursive-include src *.py
recursive-include src *.mat
# Tests (optional - include if you want tests in sdist)
recursive-include tests *.py
recursive-include tests/sample_data *.asd
# Exclude unwanted files
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-exclude * .DS_Store
recursive-exclude * *.swp
recursive-exclude * *~
# Exclude build artifacts
exclude .gitignore
exclude .coverage
exclude htmlcov
prune build
prune dist
prune *.egg-info
prune .pytest_cache
prune .tox
prune .venv
prune venv
prune env
# Exclude analysis and documentation files (they're in git but not needed in package)
exclude PROJECT_IMPROVEMENT_ANALYSIS.md
exclude ADDITIONAL_IMPROVEMENTS.md
exclude FIXES_APPLIED.md
exclude ROUND2_FIXES_APPLIED.md
exclude CLAUDE.md
# Exclude workflow and IDE files
prune .github
prune .vscode
prune .idea