-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathMANIFEST.in
More file actions
57 lines (48 loc) · 1.22 KB
/
MANIFEST.in
File metadata and controls
57 lines (48 loc) · 1.22 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
51
52
53
54
55
56
57
# SAFLA Package Manifest
# Specifies additional files to include in the distribution
# Include documentation
include README.md
include LICENSE
include CHANGELOG.md
recursive-include docs *.md *.rst *.txt
# Include configuration files
include requirements.txt
include pyproject.toml
include setup.cfg
include setup.py
# Include package data
recursive-include safla *.py
recursive-include safla *.json
recursive-include safla *.yaml
recursive-include safla *.yml
include safla/py.typed
# Include examples
recursive-include examples *.py *.md *.json *.yaml
# Include test files
recursive-include tests *.py
# Include configuration templates
recursive-include .roo *.json *.yaml *.md
# Exclude development and build files
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude __pycache__
global-exclude .git*
global-exclude .DS_Store
global-exclude *.so
global-exclude .pytest_cache
global-exclude .mypy_cache
global-exclude .coverage
global-exclude htmlcov
global-exclude build
global-exclude dist
global-exclude *.egg-info
# Exclude IDE files
global-exclude .vscode
global-exclude .idea
global-exclude *.swp
global-exclude *.swo
# Exclude temporary files
global-exclude *~
global-exclude *.tmp
global-exclude *.bak