-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
50 lines (45 loc) · 1.09 KB
/
MANIFEST.in
File metadata and controls
50 lines (45 loc) · 1.09 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
# Include the README and other important files
include README.md
include LICENSE
include CHANGELOG.md
include requirements.txt
include pyproject.toml
# Include all documentation
include USAGE.md
include LIBRARY_OVERVIEW.md
# Include examples but not their outputs
recursive-include examples *.py
exclude examples/*.db
exclude examples/*.png
exclude examples/*.json
exclude examples/*.yaml
exclude examples/*.csv
# Include tests but not their outputs
include test_basic.py
exclude test_*.db
exclude test_*.png
exclude test_*.json
exclude test_*.yaml
exclude test_*.csv
# Exclude all generated and temporary files
global-exclude *.db
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .git*
global-exclude .DS_Store
global-exclude *.so
global-exclude *.egg-info
global-exclude artifacts/
global-exclude demo_artifacts/
global-exclude simple_artifacts/
global-exclude test_artifacts/
global-exclude demo_*
global-exclude *.png
global-exclude *.jpg
global-exclude *.jpeg
global-exclude *.svg
global-exclude *.pdf
# Include typing information
include rexf/py.typed