-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMANIFEST.in
More file actions
38 lines (31 loc) · 799 Bytes
/
Copy pathMANIFEST.in
File metadata and controls
38 lines (31 loc) · 799 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
35
36
37
38
# MANIFEST.in - Include additional files in the package
# Include documentation
include README.md
include LICENSE
include CHANGELOG.md
include CONTRIBUTING.md
include QUICKSTART.md
include FEATURES.md
include GETTING_STARTED.md
include QUICK_REFERENCE.txt
# Include requirements
include requirements.txt
# Include configuration examples
include config.ini.example
# Include test files
include test.py
include test_ravanan.py
# Exclude unnecessary files
exclude demo.py
exclude stats.py
exclude run.bat
exclude run.sh
exclude PROJECT_SUMMARY.md
exclude TRANSFORMATION_SUMMARY.txt
# Exclude Python bytecode and cache
global-exclude __pycache__
global-exclude *.py[cod]
global-exclude *$py.class
global-exclude *.so
# Exclude git files
global-exclude .git*