-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
34 lines (30 loc) · 754 Bytes
/
MANIFEST.in
File metadata and controls
34 lines (30 loc) · 754 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
include README.md
include LICENSE
include CHANGELOG.md
include pyproject.toml
include requirements.txt
# Include example files
recursive-include examples *.csv *.xlsx *.json *.xml *.ttl *.yaml *.yml *.md
# Include documentation
recursive-include docs *.md *.rst
# Include test fixtures
recursive-include tests/fixtures *.csv *.xlsx *.json *.xml *.ttl *.yaml *.yml
# Exclude development and build artifacts
exclude configure_pycharm_python313.sh
exclude python313
exclude *.py[co]
exclude debug_*.py
exclude test_*.py
exclude demo.sh
exclude install.sh
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .coverage
global-exclude htmlcov
prune .git
prune .pytest_cache
prune .ruff_cache
prune .venv*
prune build
prune dist
prune htmlcov