-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
32 lines (28 loc) · 706 Bytes
/
MANIFEST.in
File metadata and controls
32 lines (28 loc) · 706 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
# MANIFEST.in - Specifies files to include in distribution packages
# Ensures license and attribution files are included when distributing via PyPI
# License and legal files
include LICENSE
include NOTICE
include README.md
# Documentation
recursive-include docs *.md
recursive-include docs/LICENSES *.txt
# Configuration files
include pyproject.toml
include requirements.txt
recursive-include requirements *.txt
# Exclude development and build artifacts
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .DS_Store
global-exclude *.so
global-exclude .git*
prune .venv
prune venv
prune build
prune dist
prune *.egg-info
prune .pytest_cache
prune .mypy_cache
prune .coverage
prune htmlcov