-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMANIFEST.in
More file actions
35 lines (30 loc) · 717 Bytes
/
MANIFEST.in
File metadata and controls
35 lines (30 loc) · 717 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
include README.md
include LICENSE
include CHANGELOG.md
include CONTRIBUTING.md
include pyproject.toml
include setup.py
# Include all Python files
recursive-include easy_slam *.py
recursive-include algorithms *.py
recursive-include tests *.py
# Include configuration files
include *.yaml
include *.yml
include *.json
# Include documentation
recursive-include docs *.md
recursive-include docs *.rst
recursive-include docs *.txt
# Include examples
recursive-include examples *.py
recursive-include examples *.md
# Exclude unnecessary files
global-exclude *.pyc
global-exclude *.pyo
global-exclude __pycache__
global-exclude .DS_Store
global-exclude .git*
global-exclude *.swp
global-exclude *.swo
global-exclude *~